Skip to content

Commit 7fd8eee

Browse files
committed
Set option no_bitsets in fypp_depoyement
1 parent 18da98d commit 7fd8eee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

config/fypp_deployment.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ def pre_process_fypp(args):
2525
kwd.append("-DPROJECT_VERSION_MAJOR="+str(args.vmajor))
2626
kwd.append("-DPROJECT_VERSION_MINOR="+str(args.vminor))
2727
kwd.append("-DPROJECT_VERSION_PATCH="+str(args.vpatch))
28-
if args.with_bitsets:
29-
kwd.append("-DWITH_BITSETS=True")
28+
if args.no_bitsets:
29+
kwd.append("-DWITH_BITSETS=False")
3030
if args.with_qp:
3131
kwd.append("-DWITH_QP=True")
3232
if args.with_xdp:
@@ -135,7 +135,7 @@ def fpm_build(args,unknown):
135135

136136
parser.add_argument("--njob", type=int, default=4, help="Number of parallel jobs for preprocessing")
137137
parser.add_argument("--maxrank",type=int, default=4, help="Set the maximum allowed rank for arrays")
138-
parser.add_argument("--with_bitsets",action='store_true', help="Include WITH_BITSETS in the command")
138+
parser.add_argument("--no_bitsets",action='store_true', help="Include WITH_BITSETS=False in the command")
139139
parser.add_argument("--with_qp",action='store_true', help="Include WITH_QP in the command")
140140
parser.add_argument("--with_xdp",action='store_true', help="Include WITH_XDP in the command")
141141
parser.add_argument("--with_ilp64",action='store_true', help="Include WITH_ILP64 to build 64-bit integer BLAS/LAPACK")

0 commit comments

Comments
 (0)