diff options
| author | Cory Fields <[email protected]> | 2014-09-23 17:00:31 -0400 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2014-09-25 14:56:26 -0400 |
| commit | f3973040028d6a7335a3265fa0e13b599b2fac3d (patch) | |
| tree | 0a90f1d0ef63fbc73f75eee7c79f872d2869bc65 /depends/hosts/darwin.mk | |
| parent | depends: add the debug/release concept to depends (diff) | |
| download | discoin-f3973040028d6a7335a3265fa0e13b599b2fac3d.tar.xz discoin-f3973040028d6a7335a3265fa0e13b599b2fac3d.zip | |
depends: add debug/release flags for linux/osx/win
Linux and mingw enable libstdc++ debugging for extra runtime checks. OSX
doesn't play nice, so don't enable it there.
Diffstat (limited to 'depends/hosts/darwin.mk')
| -rw-r--r-- | depends/hosts/darwin.mk | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/depends/hosts/darwin.mk b/depends/hosts/darwin.mk index 9e2415655..8d718eba1 100644 --- a/depends/hosts/darwin.mk +++ b/depends/hosts/darwin.mk @@ -3,6 +3,14 @@ OSX_SDK_VERSION=10.7 OSX_SDK=$(SDK_PATH)/MacOSX$(OSX_SDK_VERSION).sdk darwin_CC=clang -target $(host) -mmacosx-version-min=$(OSX_MIN_VERSION) --sysroot $(OSX_SDK) darwin_CXX=clang++ -target $(host) -mmacosx-version-min=$(OSX_MIN_VERSION) --sysroot $(OSX_SDK) -darwin_CFLAGS=-pipe -O2 + +darwin_CFLAGS=-pipe darwin_CXXFLAGS=$(darwin_CFLAGS) + +darwin_release_CFLAGS=-O2 +darwin_release_CXXFLAGS=$(darwin_release_CFLAGS) + +darwin_debug_CFLAGS=-O1 +darwin_debug_CXXFLAGS=$(darwin_debug_CFLAGS) + darwin_native_toolchain=native_cctools |