Last active
December 11, 2015 02:59
-
-
Save yamaya/4534984 to your computer and use it in GitHub Desktop.
iOS SDKをclangでcode-completionする場合に必要な最小設定 with iPhoneSimulator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-arch x86_64 | |
-fmacro-backtrace-limit=0 | |
-std=gnu99 | |
-fblocks | |
-fobjc-arc | |
-fmodules | |
-mios-simulator-version-min=8.0 | |
-isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator8.1.sdk | |
-D DEBUG | |
-I Pods/Headers | |
-include XXX/XXX-Prefix.pch | |
-Werror=return-type | |
-Werror=deprecated-objc-isa-usage | |
-Werror=objc-root-class | |
-Wduplicate-method-match | |
-Wparentheses | |
-Wswitch | |
-Wunused-function | |
-Wunused-variable | |
-Wunused-value | |
-Wempty-body | |
-Wuninitialized | |
-Wconstant-conversion | |
-Wint-conversion | |
-Wbool-conversion | |
-Wenum-conversion | |
-Wpointer-sign | |
-Wundeclared-selector | |
-Wprotocol | |
-Wdeprecated-declarations | |
-Wsemicolon-before-method-body |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment