Merge pull request #1053 from LORgames/ssurtees/floatingpointFix

Fixed issue with floatingpoint "Strict" causing errors in XCode
This commit is contained in:
J. Perkins 2018-04-16 12:21:49 -04:00 committed by GitHub
commit c802adfdd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 4 deletions

View File

@ -1610,9 +1610,6 @@
GCC_WARN_UNUSED_VARIABLE = YES;
OBJROOT = obj/Debug;
ONLY_ACTIVE_ARCH = NO;
OTHER_CFLAGS = (
"-ffloat-store",
);
SYMROOT = bin/Debug;
};
name = Debug;

View File

@ -1144,7 +1144,6 @@
-- build list of "other" C/C++ flags
local checks = {
["-ffast-math"] = cfg.floatingpoint == "Fast",
["-ffloat-store"] = cfg.floatingpoint == "Strict",
["-fomit-frame-pointer"] = cfg.flags.NoFramePointer,
}