1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2024-11-29 11:24:19 +01:00

Added GCC flag -std=c++11

Required to compile the variadic templates.
This commit is contained in:
MrWaggel 2016-06-27 13:15:26 +02:00 committed by GitHub
parent de389d9ca8
commit ce26eb3a43

View File

@ -26,7 +26,7 @@ OBJECTS = sample_mm.cpp
##############################################
OPT_FLAGS = -O3 -funroll-loops -pipe
GCC4_FLAGS = -fvisibility=hidden -fvisibility-inlines-hidden
GCC4_FLAGS = -fvisibility=hidden -fvisibility-inlines-hidden -std=c++11
DEBUG_FLAGS = -g -ggdb3 -D_DEBUG
CPP = gcc
CPP_OSX = clang