Browse Source

Merge pull request #50 from majestrate/master

don't require gcc (for issue #47)
pull/55/head
Jeff 6 years ago committed by GitHub
parent
commit
031292dcaf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Makefile

2
Makefile

@ -3,7 +3,7 @@ UNAME = $(shell uname -s) @@ -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)

Loading…
Cancel
Save