Merge pull request #50 from majestrate/master

don't require gcc (for issue #47)
This commit is contained in:
Jeff 2018-05-14 07:56:55 -04:00 committed by GitHub
commit 031292dcaf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,7 +3,7 @@ UNAME = $(shell uname -s)
I2PD_PATH = i2pd
LIBI2PD_PATH = $(I2PD_PATH)/libi2pd
LIBI2PD_CLIENT_PATH = $(I2PD_PATH)/libi2pd_client
CXX = g++
CXX ?= g++
FLAGS = -Wall -std=c++11 -Wno-misleading-indentation
ifeq ($(UNAME),Linux)