diff options
author | Beau Johnston <beau@inbeta.org> | 2018-06-10 21:19:15 +1000 |
---|---|---|
committer | Beau Johnston <beau@inbeta.org> | 2018-06-10 21:19:15 +1000 |
commit | 8f0a118feb1191e3c5384d98f3246803cb64b9d8 (patch) | |
tree | 8f842a854f8869b8cda93b0d2256f2b04f6b7a15 /mesonbuild/compilers/compilers.py | |
parent | 96a6941c9cf6afab9e1ad8a234d2272be9a40639 (diff) | |
download | meson-8f0a118feb1191e3c5384d98f3246803cb64b9d8.zip meson-8f0a118feb1191e3c5384d98f3246803cb64b9d8.tar.gz meson-8f0a118feb1191e3c5384d98f3246803cb64b9d8.tar.bz2 |
fixed sideci for cuda compilation fix
Diffstat (limited to 'mesonbuild/compilers/compilers.py')
-rw-r--r-- | mesonbuild/compilers/compilers.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py index 36eedb2..6019a9b 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -130,10 +130,10 @@ gnulike_buildtype_args = {'plain': [], 'minsize': ['-Os', '-g']} cuda_buildtype_args = {'plain': [], - 'debug': ['-O0', '-g'], - 'debugoptimized': ['-O1', '--debug'], - 'release': ['-O3', '-Otime'], - 'minsize': ['-O3', '-Ospace'], + 'debug': ['-O0', '-g'], + 'debugoptimized': ['-O1', '--debug'], + 'release': ['-O3', '-Otime'], + 'minsize': ['-O3', '-Ospace'], } arm_buildtype_args = {'plain': [], |