Skip to content

Commit

Permalink
Merge pull request futuretap#24 from jspahrsummers/xc5-backwards-comp…
Browse files Browse the repository at this point in the history
…atibility

Treat unknown-warning-option as a warning not an error
  • Loading branch information
robrix committed Mar 11, 2014
2 parents b7c593b + 827f7e1 commit 54ed350
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Base/Common.xcconfig
Expand Up @@ -155,8 +155,8 @@ RUN_CLANG_STATIC_ANALYZER = YES
// Whether to run unit tests with every build
TEST_AFTER_BUILD = NO

// Disable GCC compatibility warnings and unused static const variable warnings
WARNING_CFLAGS = -Wno-gcc-compat -Wno-unused-const-variable
// Don't treat unknown warnings as errors, and disable GCC compatibility warnings and unused static const variable warnings
WARNING_CFLAGS = -Wno-error=unknown-warning-option -Wno-gcc-compat -Wno-unused-const-variable

// Disable legacy-compatible header searching
ALWAYS_SEARCH_USER_PATHS = NO

0 comments on commit 54ed350

Please sign in to comment.