diff options
author | David Kalnischkies <david@kalnischkies.de> | 2015-11-19 19:27:09 +0100 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2015-11-19 19:27:09 +0100 |
commit | c3c77d09651b5bed315c83ebe2354c9d2cb31253 (patch) | |
tree | 3fc7e1c78a699acd59b87f8a0835f1700e9438c5 /buildlib/staticlibrary.mak | |
parent | 6aef1942f441e6e667982b92802907026d8cc7c6 (diff) |
move -std=c++11 from CXX to new CXXSTD
The hack introduced in aa91826f is replaced with a hopefully better
working "proper" solution with a new variable just for the standard we
use everywhere we use CXXFLAGS.
Git-Dch: Ignore
Diffstat (limited to 'buildlib/staticlibrary.mak')
-rw-r--r-- | buildlib/staticlibrary.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildlib/staticlibrary.mak b/buildlib/staticlibrary.mak index 86908700f..1b3a4be20 100644 --- a/buildlib/staticlibrary.mak +++ b/buildlib/staticlibrary.mak @@ -50,7 +50,7 @@ endif vpath %.cc $(SUBDIRS) $(OBJ)/%.o: %.cc echo Compiling $< to $@ - $(CXX) -c $(INLINEDEPFLAG) $(CPPFLAGS) $(CXXFLAGS) -o $@ $(abspath $<) + $(CXX) -c $(INLINEDEPFLAG) $(CPPFLAGS) $(CXXSTD) $(CXXFLAGS) -o $@ $(abspath $<) $(DoDep) # Include the dependencies that are available |