Add configure script.

- Deactivate LTO.
- Deactivate SIMD.
This commit is contained in:
Fabien Freling 2014-07-27 18:01:41 +02:00
parent f8178fae98
commit 4dba86c9f0
3 changed files with 22 additions and 4 deletions

15
configure vendored Executable file
View 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