Remove -msse2, fix halt code type on windows platform.

This commit is contained in:
David Brown 2016-10-18 18:12:33 +01:00
parent 4a9f674b10
commit 300b67a572
198 changed files with 209 additions and 209 deletions

View file

@ -144,9 +144,9 @@ void determineCCompiler() {
compiler = "gcc";
if (strncasecmp(os, "cygwin", 6) == 0) {
// Avoid cygwin specific warning that -fPIC is ignored.
cc = "gcc -g -msse2" optimize;
cc = "gcc -g" optimize;
} else {
cc = "gcc -fPIC -g -msse2" optimize;
cc = "gcc -fPIC -g" optimize;
}
#elif defined(_MSC_VER)
compiler = "MSC";