Make math test work across x86/x64.

This commit is contained in:
David Brown 2016-10-17 12:49:05 +01:00
parent eda7e88185
commit 2d8c9c4757
201 changed files with 545 additions and 568 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" optimize;
cc = "gcc -g -msse2" optimize;
} else {
cc = "gcc -fPIC -g" optimize;
cc = "gcc -fPIC -g -msse2" optimize;
}
#elif defined(_MSC_VER)
compiler = "MSC";