diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2013-01-27 21:45:02 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2013-01-27 21:45:02 +0200 |
commit | 261419aff3ab5ee1a4965511438aea58a13f258b (patch) | |
tree | fb936927849d2c260ae741be448b7e130a1ced61 /shellgenerator.py | |
parent | f0cec5bd79e31d9a9802c6af32324d15cb7c290c (diff) | |
download | meson-261419aff3ab5ee1a4965511438aea58a13f258b.zip meson-261419aff3ab5ee1a4965511438aea58a13f258b.tar.gz meson-261419aff3ab5ee1a4965511438aea58a13f258b.tar.bz2 |
Access variables through functions that do error checking.
Diffstat (limited to 'shellgenerator.py')
-rwxr-xr-x | shellgenerator.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shellgenerator.py b/shellgenerator.py index ad375b2..863e06c 100755 --- a/shellgenerator.py +++ b/shellgenerator.py @@ -210,6 +210,7 @@ echo Run compile.sh before this or bad things will happen. commands = [] commands += compiler.get_exelist() commands += self.build.get_global_flags(compiler) + commands += target.get_extra_args(compiler.get_language()) commands += compiler.get_debug_flags() commands += compiler.get_std_warn_flags() commands += compiler.get_compile_only_flags() |