summaryrefslogtreecommitdiffstats
path: root/src/libtorrent-rasterbar.mk
diff options
context:
space:
mode:
authorBoris Nagaev <bnagaev@gmail.com>2016-05-29 20:04:24 (GMT)
committerTony Theodore <tonyt@logyst.com>2016-05-30 03:17:35 (GMT)
commitdea554d03877640f4345922839e8ececda71fda4 (patch)
tree6cc761322f729af4f4a216b15c4fd0cbdb8d64ff /src/libtorrent-rasterbar.mk
parentb247344bdc579b2bd8b6a54e213f4ddf4081f187 (diff)
downloadmxe-dea554d03877640f4345922839e8ececda71fda4.zip
mxe-dea554d03877640f4345922839e8ececda71fda4.tar.gz
mxe-dea554d03877640f4345922839e8ececda71fda4.tar.bz2
libtorrent-rasterbar: fix internal gcc error on
logs of x86_64-w64-mingw32.static: before: https://gist.github.com/7c61dde0bca9160ae335e8a117862b14 after: https://gist.github.com/f429d35c8600c450606028822649afa8 Flags "-g -O2" had been there before CXXFLAGS was set. This commit brings them back.
Diffstat (limited to 'src/libtorrent-rasterbar.mk')
-rw-r--r--src/libtorrent-rasterbar.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libtorrent-rasterbar.mk b/src/libtorrent-rasterbar.mk
index d96baf8..7a1c753 100644
--- a/src/libtorrent-rasterbar.mk
+++ b/src/libtorrent-rasterbar.mk
@@ -26,7 +26,7 @@ define $(PKG)_BUILD
--disable-debug \
--disable-tests \
--disable-examples \
- CXXFLAGS='-D_WIN32_WINNT=0x0501'
+ CXXFLAGS='-D_WIN32_WINNT=0x0501 -g -O2'
$(MAKE) -C '$(1)' -j '$(JOBS)'
$(MAKE) -C '$(1)' -j 1 install
endef