diff options
author | Andreas Obergschwandtner <andreas.obergschwandtner@skidata.com> | 2022-05-25 08:57:59 +0200 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2022-05-25 07:12:02 -0700 |
commit | bfc4e958b43847eaebeed0cd825fa4a935c28f97 (patch) | |
tree | 8d3077a13364a7db4b133282f3a38d3cb4813c8d | |
parent | 35b35220656de73b730948eb0c30a898dfc13d4e (diff) | |
download | meson-bfc4e958b43847eaebeed0cd825fa4a935c28f97.zip meson-bfc4e958b43847eaebeed0cd825fa4a935c28f97.tar.gz meson-bfc4e958b43847eaebeed0cd825fa4a935c28f97.tar.bz2 |
Fix optimization level 's' for the TI compiler
-rw-r--r-- | mesonbuild/compilers/mixins/ti.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/mixins/ti.py b/mesonbuild/compilers/mixins/ti.py index 60804f7..cbad300 100644 --- a/mesonbuild/compilers/mixins/ti.py +++ b/mesonbuild/compilers/mixins/ti.py @@ -44,7 +44,7 @@ ti_optimization_args = { '1': ['-O1'], '2': ['-O2'], '3': ['-O3'], - 's': ['-04'] + 's': ['-O4'] } # type: T.Dict[str, T.List[str]] ti_debug_args = { |