Hash : b6938122 Author : Date : 2015-11-23T10:21:09
Decoder: implement custom allocator feature Drive-by: conform stricter compilation flags; cleanup shared.mk
Download
1 2 3 4 5 6 7 8 9 10 11 12 13
OS := $(shell uname) CC ?= gcc CXX ?= g++ COMMON_FLAGS = -fno-omit-frame-pointer -no-canonical-prefixes -O2 ifeq ($(OS), Darwin) CPPFLAGS += -DOS_MACOSX endif CFLAGS += $(COMMON_FLAGS) CXXFLAGS += $(COMMON_FLAGS) -std=c++11