mingw support

This commit is contained in:
gabi 2014-11-05 22:54:13 +02:00
parent db633b8c53
commit 03d9abe8e2
2 changed files with 33 additions and 0 deletions

View File

@ -11,6 +11,7 @@ Just copy the files to your build tree and use a C++11 compiler
* gcc 4.8.1 and above * gcc 4.8.1 and above
* clang 3.5 * clang 3.5
* visual studio 2013 * visual studio 2013
* mingw with g++ 4.9.x
##Features ##Features
* Very fast - performance is the primary goal (see becnhmarks below) * Very fast - performance is the primary goal (see becnhmarks below)

32
example/Makefile.mingw Normal file
View File

@ -0,0 +1,32 @@
CXX = g++
CXXFLAGS = -D_WIN32_WINNT=0x600 -march=native -Wall -Wextra -Wshadow -pedantic -std=c++11 -pthread -Wl,--no-as-needed -I../include
CXX_RELEASE_FLAGS = -O3
CXX_DEBUG_FLAGS= -g
all: example bench
debug: example-debug bench-debug
example: example.cpp
$(CXX) example.cpp -o example $(CXXFLAGS) $(CXX_RELEASE_FLAGS)
bench: bench.cpp
$(CXX) bench.cpp -o bench $(CXXFLAGS) $(CXX_RELEASE_FLAGS)
example-debug: example.cpp
$(CXX) example.cpp -o example-debug $(CXXFLAGS) $(CXX_DEBUG_FLAGS)
bench-debug: bench.cpp
$(CXX) bench.cpp -o bench-debug $(CXXFLAGS) $(CXX_DEBUG_FLAGS)
clean:
rm -f *.o logs/*.txt example example-debug bench bench-debug
rebuild: clean all
rebuild-debug: clean debug