Merge pull request #735 from LORgames/ssurtees/floatingPointFix

Fixed issue with Clang not actually supporting floatingpoint 'strict'
This commit is contained in:
Samuel Surtees 2017-04-11 22:09:41 +10:00 committed by GitHub
commit 9bd2678408

View File

@ -44,7 +44,9 @@
clang.shared = {
architecture = gcc.shared.architecture,
flags = gcc.shared.flags,
floatingpoint = gcc.shared.floatingpoint,
floatingpoint = {
Fast = "-ffast-math",
},
strictaliasing = gcc.shared.strictaliasing,
optimize = {
Off = "-O0",