summaryrefslogtreecommitdiff
path: root/numpy/distutils/intelccompiler.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/distutils/intelccompiler.py')
-rw-r--r--numpy/distutils/intelccompiler.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/distutils/intelccompiler.py b/numpy/distutils/intelccompiler.py
index 25ee0e998..3f062f33b 100644
--- a/numpy/distutils/intelccompiler.py
+++ b/numpy/distutils/intelccompiler.py
@@ -19,6 +19,7 @@ class IntelCCompiler(UnixCCompiler):
self.set_executables(compiler=compiler,
compiler_so=compiler,
compiler_cxx=compiler,
+ archiver='xiar' + ' cru',
linker_exe=compiler,
linker_so=compiler + ' -shared')
@@ -48,6 +49,7 @@ class IntelEM64TCCompiler(UnixCCompiler):
self.set_executables(compiler=compiler,
compiler_so=compiler,
compiler_cxx=compiler,
+ archiver='xiar' + ' cru',
linker_exe=compiler,
linker_so=compiler + ' -shared')
@@ -66,6 +68,7 @@ class IntelCCompilerW(MSVCCompiler):
def initialize(self, plat_name=None):
MSVCCompiler.initialize(self, plat_name)
self.cc = self.find_exe("icl.exe")
+ self.lib = self.find_exe("xilib")
self.linker = self.find_exe("xilink")
self.compile_options = ['/nologo', '/O3', '/MD', '/W3', '/Qstd=c99']
self.compile_options_debug = ['/nologo', '/Od', '/MDd', '/W3',