diff options
author | Robert Kern <rkern@enthought.com> | 2012-05-30 23:40:21 +0100 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2012-05-31 10:51:59 -0600 |
commit | 1fa15b0708f62096f0301d3c2fe4442db1ec145d (patch) | |
tree | c5601fd0a1fea3c356e49d1b3f554a760c34863e /numpy/distutils/fcompiler/intel.py | |
parent | c6b67ff101291aaa99d49893f4bb3e653f43b3c9 (diff) | |
download | numpy-1fa15b0708f62096f0301d3c2fe4442db1ec145d.tar.gz |
BUG: '-framework Python' is not needed and can interfere.
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 190584829..18ecc01e5 100644 --- a/numpy/distutils/fcompiler/intel.py +++ b/numpy/distutils/fcompiler/intel.py @@ -111,7 +111,7 @@ class IntelFCompiler(BaseIntelFCompiler): opt.remove('-shared') except ValueError: idx = 0 - opt[idx:idx] = ['-dynamiclib', '-Wl,-undefined,dynamic_lookup', '-Wl,-framework,Python'] + opt[idx:idx] = ['-dynamiclib', '-Wl,-undefined,dynamic_lookup'] return opt class IntelItaniumFCompiler(IntelFCompiler): |