mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 12:12:25 +00:00
Remove -msse2, fix halt code type on windows platform.
This commit is contained in:
parent
4a9f674b10
commit
300b67a572
198 changed files with 209 additions and 209 deletions
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue