diff options
Diffstat (limited to 'numpy/distutils/fcompiler/nag.py')
-rw-r--r-- | numpy/distutils/fcompiler/nag.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/distutils/fcompiler/nag.py b/numpy/distutils/fcompiler/nag.py index 8086795ec..fb85c821a 100644 --- a/numpy/distutils/fcompiler/nag.py +++ b/numpy/distutils/fcompiler/nag.py @@ -16,7 +16,8 @@ class BaseNAGFCompiler(FCompiler): def get_flags_linker_so(self): if sys.platform == 'darwin': - return ['-unsharedf95', '-Wl,-bundle,-flat_namespace,-undefined,suppress'] + return ['-unsharedf95', + '-Wl,-bundle,-flat_namespace,-undefined,suppress'] return ["-Wl,-shared"] def get_flags_opt(self): return ['-O4'] |