diff options
author | Carlo Zancanaro <carlo@pc-4w14-0.cs.usyd.edu.au> | 2012-09-20 15:19:49 +1000 |
---|---|---|
committer | Carlo Zancanaro <carlo@pc-4w14-0.cs.usyd.edu.au> | 2012-09-20 15:19:49 +1000 |
commit | bb9a899b7c45b830c6b70e2811130a41ebb31ee5 (patch) | |
tree | 070ca77682bf7e3b72a94e78fbe0fcf337bdd98a /impl/Makefile | |
parent | 3d206f03985b50beacae843d880bccdc91a9f424 (diff) |
Remove exceptions and C++11 features for LLVM.
Diffstat (limited to 'impl/Makefile')
-rw-r--r-- | impl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/impl/Makefile b/impl/Makefile index 213657b..6fc6f3b 100644 --- a/impl/Makefile +++ b/impl/Makefile @@ -2,7 +2,7 @@ CC=gcc CPP=g++ BUILD=build PARSER=parser -FLAGS=-Wall -Werror -Wextra -pedantic -lantlr3c -std=c++11 +FLAGS=-Wall -Werror -Wextra -pedantic -lantlr3c -fno-exceptions NORMAL_FLAGS=$(FLAGS) -g -pg OPTIMISED_FLAGS=$(FLAGS) -O3 |