Skip to content

Commit

Permalink
upgrade Makefile.static for use with mingw-g++ 4.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
schloegl authored and neurodroid committed Jan 12, 2015
1 parent 6b25d4c commit 21826d0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile.static
Expand Up @@ -194,7 +194,7 @@ endif
CC = $(shell $(WXCONF) --cc)
CXX = $(shell $(WXCONF) --cxx)
CFLAGS = $(DEFINES) $(shell $(WXCONF) --cflags) -fstack-protector
CXXFLAGS = $(DEFINES) $(shell $(WXCONF) --cxxflags) -fstack-protector
CXXFLAGS = $(DEFINES) $(shell $(WXCONF) --cxxflags) -std=gnu++11 -fstack-protector
LIBS += $(shell $(WXCONF) --libs net,adv,aui,core,base)
LIBS += -lhdf5_hl -lhdf5
ifneq (,$(findstring WITH_BIOSIG2, $(DEFINES)))
Expand All @@ -209,7 +209,8 @@ endif
LIBS += -lfftw3 -lz -lpthread

ifeq (mingw,$(findstring mingw, $(WXCONF)))
LIBS += -lgfortran -liberty -liconv
LIBS += -lgfortran -lquadmath
LIBS += -liberty -liconv
endif


Expand Down

0 comments on commit 21826d0

Please sign in to comment.