Skip to content

Commit 64e9bd7

Browse files
authored
fix for building SimpleX
Building now fails for me unless using std=c++11 here. Also get rid of some flags that should be set in the AMUSE config.mk
1 parent 31e34e6 commit 64e9bd7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/amuse/community/simplex/src/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ OBJ=./obj/
2727
LIB=./lib/
2828
BIN=./bin/
2929

30-
CXXCFLAGS_NO_C = $(CXXFLAGS) -Wall -ansi -O2 -g -ffast-math -fomit-frame-pointer
30+
CXXCFLAGS_NO_C = $(CXXFLAGS) -ansi -std=c++11 -ffast-math -fomit-frame-pointer
3131
CXXCFLAGS := $(CXXCFLAGS_NO_C) -c
3232
export CXXCFLAGS
3333

0 commit comments

Comments
 (0)