Index: SConstruct |
=================================================================== |
--- SConstruct (revision 1787) |
+++ SConstruct (working copy) |
@@ -581,13 +581,13 @@ |
def AddRelevantFlags(self, initial, flags): |
result = initial.copy() |
- self.AppendFlags(result, flags.get('all')) |
toolchain = self.options['toolchain'] |
if toolchain in flags: |
self.AppendFlags(result, flags[toolchain].get('all')) |
for option in sorted(self.options.keys()): |
value = self.options[option] |
self.AppendFlags(result, flags[toolchain].get(option + ':' + value)) |
+ self.AppendFlags(result, flags.get('all')) |
return result |
def AddRelevantSubFlags(self, options, flags): |