Add configure script.
- Deactivate LTO. - Deactivate SIMD.
This commit is contained in:
parent
f8178fae98
commit
4dba86c9f0
3 changed files with 22 additions and 4 deletions
15
configure
vendored
Executable file
15
configure
vendored
Executable file
|
@ -0,0 +1,15 @@
|
|||
#!/bin/sh
|
||||
|
||||
case `uname -s` in
|
||||
|
||||
Darwin)
|
||||
echo 'CXX = clang++' > Makefile.rules
|
||||
echo 'CXXFLAGS_PLATFORM = ' > Makefile.rules
|
||||
;;
|
||||
|
||||
Linux)
|
||||
echo 'CXX = g++' > Makefile.rules
|
||||
echo 'CXXFLAGS_PLATFORM = ' > Makefile.rules
|
||||
;;
|
||||
|
||||
esac
|
Loading…
Add table
Add a link
Reference in a new issue