i2pd/Makefile.linux

41 lines
1.1 KiB
Makefile
Raw Normal View History

CXXFLAGS = -g -Wall -fPIC
2014-10-30 00:54:47 +03:00
CXXVER := $(shell $(CXX) -dumpversion)
2014-09-23 05:44:09 +04:00
2014-10-30 00:11:58 +03:00
FGREP = fgrep
IS_64 := $(shell $(CXX) -dumpmachine 2>&1 | $(FGREP) -c "64")
2014-10-31 20:45:58 +03:00
USE_AESNI := yes
ifeq ($(shell expr match ${CXXVER} "4\.[0-9][0-9]"),4) # >= 4.10
CXXFLAGS += -std=c++11
else ifeq ($(shell expr match ${CXXVER} "4\.[7-9]"),3) # >= 4.7
CXXFLAGS += -std=c++11
else ifeq ($(shell expr match ${CXXVER} "4\.6"),3) # = 4.6
CXXFLAGS += -std=c++0x
2014-10-30 04:42:55 +03:00
else ifeq ($(shell expr match $(CXX) 'clang'),5)
CXXFLAGS += -std=c++11
else # not supported
$(error Compiler too old)
2014-09-23 05:44:09 +04:00
endif
2014-11-07 17:48:49 +03:00
LIBDIR := /usr/lib
2014-08-17 09:35:09 +04:00
INCFLAGS =
ifeq ($(STATIC),yes)
LDLIBS += $(LIBDIR)/libcryptopp.a $(LIBDIR)/libboost_system.a
LDLIBS += $(LIBDIR)/libboost_date_time.a $(LIBDIR)/libboost_filesystem.a
LDLIBS += $(LIBDIR)/libboost_regex.a $(LIBDIR)/libboost_program_options.a
LDLIBS += -lpthread -static-libstdc++ -static-libgcc
USE_AESNI := no
else
LDLIBS = -lcryptopp -lboost_system -lboost_date_time -lboost_filesystem -lboost_regex -lboost_program_options -lpthread
endif
2014-10-31 20:45:58 +03:00
ifeq ($(USE_AESNI),yes)
2014-10-30 00:11:58 +03:00
ifeq ($(IS_64),1)
#check if AES-NI is supported by CPU
2014-08-17 09:35:09 +04:00
ifneq ($(shell grep -c aes /proc/cpuinfo),0)
CXXFLAGS += -maes -DAESNI
endif
2014-10-30 00:11:58 +03:00
endif
2014-10-31 20:45:58 +03:00
endif