summaryrefslogtreecommitdiff
path: root/mesonbuild/munstable_coredata.py
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2019-03-19 17:58:46 -0400
committerNirbheek Chauhan <nirbheek.chauhan@gmail.com>2019-03-27 14:45:42 +0000
commite677704d2149db9ac91c5000633a3fac8f91956f (patch)
treedf27968a4780819eecc56a2b8415e0e1c2476665 /mesonbuild/munstable_coredata.py
parent151961056cc2ebda27244746d4d441b2eb48cf8e (diff)
downloadmeson-e677704d2149db9ac91c5000633a3fac8f91956f.tar.gz
Don't collect preprocssor flags separately from compiler flags
I recall that @jpakkane never wanted this, but @nirbheek did, but then @nirbheek changed his mind. I am fine either way except for the cross inconsistency that exists today: There is no `c_preproc_args` or similar one can put in the cross file, so no way to replicate the effect of CPPFLAGS during cross compilation.
Diffstat (limited to 'mesonbuild/munstable_coredata.py')
-rw-r--r--mesonbuild/munstable_coredata.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/mesonbuild/munstable_coredata.py b/mesonbuild/munstable_coredata.py
index 913f94214..aaf652300 100644
--- a/mesonbuild/munstable_coredata.py
+++ b/mesonbuild/munstable_coredata.py
@@ -118,10 +118,6 @@ def run(options):
print('Cached dependencies:')
for dep_key, dep in cross:
print_dep(dep_key, dep)
- elif k == 'external_preprocess_args':
- for lang, opts in v.items():
- if opts:
- print('Preprocessor args for ' + lang + ': ' + ' '.join(opts))
else:
print(k + ':')
print(textwrap.indent(pprint.pformat(v), ' '))