aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers
diff options
context:
space:
mode:
authorAndreas Obergschwandtner <andreas.obergschwandtner@skidata.com>2022-05-25 08:57:59 +0200
committerXavier Claessens <xclaesse@gmail.com>2022-05-25 07:12:02 -0700
commitbfc4e958b43847eaebeed0cd825fa4a935c28f97 (patch)
tree8d3077a13364a7db4b133282f3a38d3cb4813c8d /mesonbuild/compilers
parent35b35220656de73b730948eb0c30a898dfc13d4e (diff)
downloadmeson-bfc4e958b43847eaebeed0cd825fa4a935c28f97.zip
meson-bfc4e958b43847eaebeed0cd825fa4a935c28f97.tar.gz
meson-bfc4e958b43847eaebeed0cd825fa4a935c28f97.tar.bz2
Fix optimization level 's' for the TI compiler
Diffstat (limited to 'mesonbuild/compilers')
-rw-r--r--mesonbuild/compilers/mixins/ti.py2
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 = {