aboutsummaryrefslogtreecommitdiff
path: root/depends/hosts/mingw32.mk
diff options
context:
space:
mode:
authorCory Fields <cory-nospam-@coryfields.com>2014-09-23 17:00:31 -0400
committerCory Fields <cory-nospam-@coryfields.com>2014-09-25 14:56:26 -0400
commitf3973040028d6a7335a3265fa0e13b599b2fac3d (patch)
tree0a90f1d0ef63fbc73f75eee7c79f872d2869bc65 /depends/hosts/mingw32.mk
parent2027ad30e7b436b1341a0013398732c10f880bb9 (diff)
downloadbitcoin-f3973040028d6a7335a3265fa0e13b599b2fac3d.tar.xz
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/mingw32.mk')
-rw-r--r--depends/hosts/mingw32.mk10
1 files changed, 9 insertions, 1 deletions
diff --git a/depends/hosts/mingw32.mk b/depends/hosts/mingw32.mk
index ffe4a55842..dbfb62fdcf 100644
--- a/depends/hosts/mingw32.mk
+++ b/depends/hosts/mingw32.mk
@@ -1,2 +1,10 @@
-mingw32_CFLAGS=-pipe -O2
+mingw32_CFLAGS=-pipe
mingw32_CXXFLAGS=$(mingw32_CFLAGS)
+
+mingw32_release_CFLAGS=-O2
+mingw32_release_CXXFLAGS=$(mingw32_release_CFLAGS)
+
+mingw32_debug_CFLAGS=-O1
+mingw32_debug_CXXFLAGS=$(mingw32_debug_CFLAGS)
+
+mingw32_debug_CPPFLAGS=-D_GLIBCXX_DEBUG -D_GLIBCXX_DEBUG_PEDANTIC