8000 Update armccompiler.py · numpy/numpy@794b36f · GitHub
[go: up one dir, main page]

Skip to content

Commit 794b36f

Browse files
tomgreen66charris
authored andcommitted
Update armccompiler.py
Remove `-mcpu=native` since it should be decided by the configuration.
1 parent d93b14e commit 794b36f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

numpy/distutils/armccompiler.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ def __init__(self, verbose=0, dry_run=0, force=0):
1717
cc_compiler = self.cc_exe
1818
cxx_compiler = self.cxx_exe
1919
self.set_executables(compiler=cc_compiler +
20-
' -mcpu=native -O3 -fPIC',
20+
' -O3 -fPIC',
2121
compiler_so=cc_compiler +
22-
' -mcpu=native -O3 -fPIC',
22+
' -O3 -fPIC',
2323
compiler_cxx=cxx_compiler +
24-
' -mcpu=native -O3 -fPIC',
24+
' -O3 -fPIC',
2525
linker_exe=cc_compiler +
2626
' -lamath',
2727
linker_so=cc_compiler +

0 commit comments

Comments
 (0)
0