aboutsummaryrefslogtreecommitdiff
path: root/shellgenerator.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-01-26 01:44:56 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2013-01-26 01:44:56 +0200
commitb97f43b9b7777a83dd44b4a16b65aeafda996aba (patch)
treec0c42c3f541b62222599534514de47c639268482 /shellgenerator.py
parent2af66e54781c2592f22c99b1d72d35a7b758a32f (diff)
downloadmeson-b97f43b9b7777a83dd44b4a16b65aeafda996aba.zip
meson-b97f43b9b7777a83dd44b4a16b65aeafda996aba.tar.gz
meson-b97f43b9b7777a83dd44b4a16b65aeafda996aba.tar.bz2
Can set global flags.
Diffstat (limited to 'shellgenerator.py')
-rwxr-xr-xshellgenerator.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/shellgenerator.py b/shellgenerator.py
index 5c7ce2e..ad375b2 100755
--- a/shellgenerator.py
+++ b/shellgenerator.py
@@ -209,6 +209,7 @@ echo Run compile.sh before this or bad things will happen.
def generate_basic_compiler_arguments(self, target, compiler):
commands = []
commands += compiler.get_exelist()
+ commands += self.build.get_global_flags(compiler)
commands += compiler.get_debug_flags()
commands += compiler.get_std_warn_flags()
commands += compiler.get_compile_only_flags()