We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5532fb8 commit d9b4109Copy full SHA for d9b4109
tools/export/exporters.py
@@ -49,6 +49,9 @@ def flags(self):
49
def progen_flags(self):
50
if not hasattr(self, "_progen_flag_cache") :
51
self._progen_flag_cache = dict([(key + "_flags", value) for key,value in self.flags.iteritems()])
52
+ if self.config_header:
53
+ self._progen_flag_cache['c_flags'] += self.toolchain.get_config_option(self.config_header)
54
+ self._progen_flag_cache['cxx_flags'] += self.toolchain.get_config_option(self.config_header)
55
return self._progen_flag_cache
56
57
def __scan_and_copy(self, src_path, trg_path):
0 commit comments