diff options
author | Robert Kern <robert.kern@gmail.com> | 2007-12-16 05:23:30 +0000 |
---|---|---|
committer | Robert Kern <robert.kern@gmail.com> | 2007-12-16 05:23:30 +0000 |
commit | 0ed3e123454164b5e86699216e27e513653eeda8 (patch) | |
tree | 026e8c92f394e53eb3b372905029d764da615e65 /numpy/distutils/fcompiler/intel.py | |
parent | bd16a4fdf861f02b51a27df2b9bb0494fd24bb0f (diff) | |
download | numpy-0ed3e123454164b5e86699216e27e513653eeda8.tar.gz |
Also link with Python.
Diffstat (limited to 'numpy/distutils/fcompiler/intel.py')
-rw-r--r-- | numpy/distutils/fcompiler/intel.py | 2 |
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): |