trying clang 3.8

This commit is contained in:
jeefo 2016-09-14 22:57:18 +03:00
commit 6a5443b506
2 changed files with 3 additions and 3 deletions

View file

@ -9,7 +9,7 @@ addons:
- gcc-multilib
- g++-multilib
sources:
- llvm-toolchain-precise-3.7
- llvm-toolchain-precise-3.8
- ubuntu-toolchain-r-test
language: cpp
branches:

View file

@ -22,13 +22,13 @@ OBJECTS = $(SRC_DIR)/basecode.cpp \
$(SRC_DIR)/support.cpp \
$(SRC_DIR)/waypoint.cpp \
C_OPT_FLAGS = -O2 -DNDEBUG -pipe -fno-strict-aliasing
C_OPT_FLAGS = -O2 -DNDEBUG -pipe -fno-strict-aliasing -mtune=generic
C_DEBUG_FLAGS = -D_DEBUG -DDEBUG -g -ggdb3
C_GCC_FLAGS = -fvisibility=hidden
CPP_GCC_FLAGS = -fvisibility-inlines-hidden
CPP = clang-3.7
CPP = clang-3.8
CPP_MAC = o32-clang
LINK =