summaryrefslogtreecommitdiff
path: root/numpy/distutils/fcompiler/intel.py
diff options
context:
space:
mode:
authorRobert Kern <robert.kern@gmail.com>2007-12-16 05:23:30 +0000
committerRobert Kern <robert.kern@gmail.com>2007-12-16 05:23:30 +0000
commit0ed3e123454164b5e86699216e27e513653eeda8 (patch)
tree026e8c92f394e53eb3b372905029d764da615e65 /numpy/distutils/fcompiler/intel.py
parentbd16a4fdf861f02b51a27df2b9bb0494fd24bb0f (diff)
downloadnumpy-0ed3e123454164b5e86699216e27e513653eeda8.tar.gz
Also link with Python.
Diffstat (limited to 'numpy/distutils/fcompiler/intel.py')
-rw-r--r--numpy/distutils/fcompiler/intel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/fcompiler/intel.py b/numpy/distutils/fcompiler/intel.py
index ba93538ac..b3928015c 100644
--- a/numpy/distutils/fcompiler/intel.py
+++ b/numpy/distutils/fcompiler/intel.py
@@ -114,7 +114,7 @@ class IntelFCompiler(BaseIntelFCompiler):
opt.remove('-shared')
except ValueError:
idx = 0
- opt[idx:idx] = ['-dynamiclib', '-Wl,-undefined,dynamic_lookup']
+ opt[idx:idx] = ['-dynamiclib', '-Wl,-undefined,dynamic_lookup', '-Wl,-framework,Python']
return opt
class IntelItaniumFCompiler(IntelFCompiler):