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.
This commit is contained in:
Boris Nagaev 2016-05-29 23:04:24 +03:00 committed by Tony Theodore
parent b247344bdc
commit dea554d038
1 changed files with 1 additions and 1 deletions

View File

@ -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