summaryrefslogtreecommitdiff
path: root/scipy_distutils/gnufcompiler.py
diff options
context:
space:
mode:
authorPearu Peterson <pearu.peterson@gmail.com>2004-02-18 08:51:39 +0000
committerPearu Peterson <pearu.peterson@gmail.com>2004-02-18 08:51:39 +0000
commit9d206bd711194eb5cdc60a5acaa4017c7d67f3e3 (patch)
tree12502beb7b7dcd889ef2b6a05d05f5b524bca44b /scipy_distutils/gnufcompiler.py
parent152465478656a1bd5be7859f79fe1f4b7365ac93 (diff)
downloadnumpy-9d206bd711194eb5cdc60a5acaa4017c7d67f3e3.tar.gz
Fixed linking flags for darwin
Diffstat (limited to 'scipy_distutils/gnufcompiler.py')
-rw-r--r--scipy_distutils/gnufcompiler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scipy_distutils/gnufcompiler.py b/scipy_distutils/gnufcompiler.py
index c3687ba75..776e238cd 100644
--- a/scipy_distutils/gnufcompiler.py
+++ b/scipy_distutils/gnufcompiler.py
@@ -48,7 +48,7 @@ class GnuFCompiler(FCompiler):
def get_flags_linker_so(self):
opt = []
if sys.platform=='darwin':
- opt.extend(['-framework','Python'])
+ opt.extend(["-Wl,-framework","-Wl,Python","-lcc_dynamic","-bundle"])
else:
opt.append("-shared")
if sys.platform[:5]=='sunos':