Browse Source

fix gcc 7 on ubuntu

pull/987/head
Jeff Becker 7 years ago
parent
commit
3330bf4f2f
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05
  1. 2
      Makefile.linux

2
Makefile.linux

@ -21,6 +21,8 @@ else ifeq ($(shell expr match ${CXXVER} "4\.6"),3) # = 4.6 @@ -21,6 +21,8 @@ else ifeq ($(shell expr match ${CXXVER} "4\.6"),3) # = 4.6
NEEDED_CXXFLAGS += -std=c++0x
else ifeq ($(shell expr match ${CXXVER} "[5-7]\.[0-9]"),3) # gcc >= 5.0
NEEDED_CXXFLAGS += -std=c++11
else ifeq ($(shell expr match ${CXXVER} "7"),1) # gcc 7 ubuntu
NEEDED_CXXFLAGS += -std=c++11
else # not supported
$(error Compiler too old)
endif

Loading…
Cancel
Save