mirror of
https://github.com/textmate/textmate.git
synced 2026-04-28 03:00:34 -04:00
Do not pass -fobjc-default-synthesize-properties to clang
This option was removed in revision 191551 of clang (Sep 27, 2013). Property synthesizing seems to now be default, it’s unclear to me what revision of clang made the behavior default, but since we require a fairly recent version for other things (like Cap’n’proto) I don’t think this change will cause a problem.
This commit is contained in:
4
target
4
target
@@ -14,9 +14,9 @@ FLAGS += -DNDEBUG -Os
|
||||
# LINK = OakDebug
|
||||
|
||||
CXX_FLAGS += -fvisibility=hidden -std=c++11 -stdlib=libc++
|
||||
OBJC_FLAGS += -fvisibility=hidden -fobjc-arc -Xclang -fobjc-default-synthesize-properties -std=c99 -fobjc-abi-version=3
|
||||
OBJC_FLAGS += -fvisibility=hidden -fobjc-arc -std=c99 -fobjc-abi-version=3
|
||||
OBJCXX_FLAGS += -fvisibility=hidden -std=c++11 -stdlib=libc++ -fobjc-abi-version=3
|
||||
OBJCXX_FLAGS += -fobjc-arc -Xclang -fobjc-default-synthesize-properties -fobjc-call-cxx-cdtors
|
||||
OBJCXX_FLAGS += -fobjc-arc -fobjc-call-cxx-cdtors
|
||||
LIBS += c++
|
||||
|
||||
LN_FLAGS += -m64 -mmacosx-version-min=$APP_MIN_OS -isysroot "$sdk"
|
||||
|
||||
Reference in New Issue
Block a user