From 8cfbbe13d9a2c94529e2d2c06a8e154d9892c8c4 Mon Sep 17 00:00:00 2001 From: cookedm Date: Wed, 17 May 2006 20:53:44 +0000 Subject: Fix for using NAG Fortran 95, due to James Graham --- numpy/distutils/fcompiler/nag.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/distutils/fcompiler/nag.py') diff --git a/numpy/distutils/fcompiler/nag.py b/numpy/distutils/fcompiler/nag.py index c0b3b17e9..61fab122c 100644 --- a/numpy/distutils/fcompiler/nag.py +++ b/numpy/distutils/fcompiler/nag.py @@ -22,7 +22,7 @@ class NAGFCompiler(FCompiler): def get_flags_linker_so(self): if sys.platform=='darwin': return ['-unsharedf95','-Wl,-bundle,-flat_namespace,-undefined,suppress'] - return ["-Wl,shared"] + return ["-Wl,-shared"] def get_flags_opt(self): return ['-O4'] def get_flags_arch(self): -- cgit v1.2.1