mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2024-10-31 09:20:38 +00:00
b7f0d87daf
Done with Vort's (https://github.com/Vort) cooperation Signed-off-by: R4SAS <r4sas@i2pmail.org>
14 lines
853 B
Makefile
14 lines
853 B
Makefile
CXX = clang++
|
|
CXXFLAGS ?= ${CXX_DEBUG} -Wall -Wextra -Wno-unused-parameter -pedantic -Wno-misleading-indentation
|
|
## NOTE: NEEDED_CXXFLAGS is here so that custom CXXFLAGS can be specified at build time
|
|
## **without** overwriting the CXXFLAGS which we need in order to build.
|
|
## For example, when adding 'hardening flags' to the build
|
|
## (e.g. -fstack-protector-strong -Wformat -Werror=format-security), we do not want to remove
|
|
## -std=c++11. If you want to remove this variable please do so in a way that allows setting
|
|
## custom FLAGS to work at build-time.
|
|
NEEDED_CXXFLAGS = -std=c++11
|
|
DEFINES = -D_GLIBCXX_USE_NANOSLEEP=1
|
|
INCFLAGS = -I/usr/include/ -I/usr/local/include/
|
|
LDFLAGS = ${LD_DEBUG} -Wl,-rpath,/usr/local/lib -L/usr/local/lib
|
|
LDLIBS = -lcrypto -lssl -lz -lboost_system -lboost_date_time -lboost_filesystem -lboost_program_options -lpthread
|