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 db6729c commit cca1455Copy full SHA for cca1455
tools/export/exporters.py
@@ -48,6 +48,9 @@ def flags(self):
48
def progen_flags(self):
49
if not hasattr(self, "_progen_flag_cache") :
50
self._progen_flag_cache = dict([(key + "_flags", value) for key,value in self.flags.iteritems()])
51
+ if self.config_header:
52
+ self._progen_flag_cache['c_flags'] += self.toolchain.get_config_option(self.config_header)
53
+ self._progen_flag_cache['cxx_flags'] += self.toolchain.get_config_option(self.config_header)
54
return self._progen_flag_cache
55
56
def __scan_and_copy(self, src_path, trg_path):
0 commit comments