Skip to content

Commit cf38d94

Browse files
committed
Add option to get rid of all CPP defaults at once
1 parent 93f7fe1 commit cf38d94

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

ctypesgen/__main__.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -192,13 +192,18 @@ def __call__(self, parser, namespace, values, option_string=None):
192192
help="Instruct the preprocessor to undefine the specified macro via commandline",
193193
)
194194
parser.add_argument(
195-
"-X", "--no-default-cppflags",
195+
"-X", "--pop-default-flags",
196196
nargs="+",
197197
action="extend",
198198
default=[],
199199
metavar="ENTRY",
200200
help="Remove ENTRY from preprocessor defaults, e.g. -X __GNUC__ can be used to not implicitly undefine __GNUC__.",
201201
)
202+
parser.add_argument(
203+
"--no-default-flags",
204+
action="store_true",
205+
help="Do not add any default defines/undefines at all. Beware: this will most probably leads to more parser errors."
206+
)
202207
parser.add_argument(
203208
"--preproc-savepath",
204209
metavar="FILENAME",

ctypesgen/parser/preprocessor.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ def __init__(self, options, cparser):
6161
self.cparser = cparser # An instance of CParser
6262

6363
self.default_flags = {"-D": {}, "-U": []}
64-
6564
self.default_flags["-D"].update({
6665
"__extension__": "",
6766
"__asm__(x)": "",
@@ -97,8 +96,11 @@ def __init__(self, options, cparser):
9796

9897
def _get_default_flags(self):
9998

99+
if self.options.no_default_flags:
100+
return {}
101+
100102
flags_dict = copy.deepcopy(self.default_flags)
101-
crossout = self.options.no_default_cppflags
103+
crossout = self.options.pop_default_flags
102104
for params in flags_dict.values():
103105
deletor = params.pop if isinstance(params, dict) else params.remove
104106
unfound = []

0 commit comments

Comments
 (0)