diff options
author | czgdp1807 <gdp.1807@gmail.com> | 2021-06-07 15:05:24 +0530 |
---|---|---|
committer | czgdp1807 <gdp.1807@gmail.com> | 2021-06-07 15:05:24 +0530 |
commit | 6f0f6ac879724aaa105dcf29def1e88e66420f5c (patch) | |
tree | 6cef9901c1c7f2365bcf10cf1fb2a061a0ee5d72 /numpy/distutils/intelccompiler.py | |
parent | 4e59da126b522dd5a894041a4c9570e130fe7ae4 (diff) | |
parent | 21838b4b21d8c702730aba80131fe6ee5fe5116f (diff) | |
download | numpy-6f0f6ac879724aaa105dcf29def1e88e66420f5c.tar.gz |
resolved conflicts
Diffstat (limited to 'numpy/distutils/intelccompiler.py')
-rw-r--r-- | numpy/distutils/intelccompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/intelccompiler.py b/numpy/distutils/intelccompiler.py index 0388ad577..0fa1c11dd 100644 --- a/numpy/distutils/intelccompiler.py +++ b/numpy/distutils/intelccompiler.py @@ -58,7 +58,7 @@ class IntelEM64TCCompiler(UnixCCompiler): v = self.get_version() mpopt = 'openmp' if v and v < '15' else 'qopenmp' - self.cc_exe = ('icc -m64 -fPIC -fp-model strict -O3 ' + self.cc_exe = ('icc -std=c99 -m64 -fPIC -fp-model strict -O3 ' '-fomit-frame-pointer -{}').format(mpopt) compiler = self.cc_exe |