mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-08-15 22:02:51 -06:00
ide: CLANG sse2 issue fixed
git-svn-id: svn://ultimatepp.org/upp/trunk@7502 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
59165a27a4
commit
bd9032c4aa
1 changed files with 5 additions and 2 deletions
|
|
@ -76,8 +76,11 @@ bool GccBuilder::BuildPackage(const String& package, Vector<String>& linkfile,
|
|||
cc << " -arch i386";
|
||||
}
|
||||
|
||||
if(HasFlag("SSE2") || !HasFlag("CLANG"))
|
||||
cc << " -msse2 -mfpmath=sse";
|
||||
if(HasFlag("SSE2")) {
|
||||
cc << " -msse2";
|
||||
if(!HasFlag("CLANG"))
|
||||
cc << " -mfpmath=sse";
|
||||
}
|
||||
|
||||
String cc_speed = cc;
|
||||
bool release = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue