diff options
author | Christos Efstathiou <christos.efstathiou@nag.co.uk> | 2020-12-07 14:38:13 +0000 |
---|---|---|
committer | Christos Efstathiou <christos.efstathiou@nag.co.uk> | 2020-12-07 14:38:13 +0000 |
commit | 134bfbb08c5e0d75fa1ac6c66cf1c8402c52caf5 (patch) | |
tree | 916990a11ae8859c16902cd167d5059fd09e7a6f /numpy/distutils/fcompiler | |
parent | a3c09377e80a37deedc486ec30a7e852b7a8e564 (diff) | |
download | numpy-134bfbb08c5e0d75fa1ac6c66cf1c8402c52caf5.tar.gz |
BUG: Removed empty String from Nag Compiler's Flags
Diffstat (limited to 'numpy/distutils/fcompiler')
-rw-r--r-- | numpy/distutils/fcompiler/nag.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/fcompiler/nag.py b/numpy/distutils/fcompiler/nag.py index 908e724e6..7df8ffe2c 100644 --- a/numpy/distutils/fcompiler/nag.py +++ b/numpy/distutils/fcompiler/nag.py @@ -19,7 +19,7 @@ class BaseNAGFCompiler(FCompiler): def get_flags_opt(self): return ['-O4'] def get_flags_arch(self): - return [''] + return [] class NAGFCompiler(BaseNAGFCompiler): |