Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ WXCONFIG ?= wx-config
HOST=
OPT_FLAGS += -fopenmp
LIBS += -lgomp
WXCXXFLAGS= `$(WXCONFIG) --cxxflags` -Iudis86 -Imhash/include -MMD -Wall -O2 -DNDEBUG
WXCXXFLAGS= `$(WXCONFIG) --cxxflags` -Iudis86 -Imhash/include -fopenmp -MMD -Wall -O2 -DNDEBUG
WXLDFLAGS = `$(WXCONFIG) --libs` `$(WXCONFIG) --libs aui` `$(WXCONFIG) --libs core`
#add this ldflags for WinConsole "-Wl,--subsystem,console -mconsole" for win-debug
#LDFLAGS += -Wl,--subsystem,console -mconsole
Expand Down Expand Up @@ -50,7 +50,7 @@ all:$(EXECUTABLE) langs
#CXX=clang++
#OPT_FLAGS=-D_Bool=bool -std=c++11 -lomp

$(OBJECTS): $(LIBS) $(SOURCES)
$(OBJECTS): $(SOURCES)

MOBJECTS=$(LANGUAGES:.po=.mo)

Expand Down