Merge branch 'clang'

This commit is contained in:
Brad King 2010-06-07 14:17:58 -04:00
commit bbd528c800
6 changed files with 10 additions and 0 deletions

View File

@ -9,6 +9,9 @@
#if defined(__INTEL_COMPILER) || defined(__ICC) #if defined(__INTEL_COMPILER) || defined(__ICC)
# define COMPILER_ID "Intel" # define COMPILER_ID "Intel"
#elif defined(__clang__)
# define COMPILER_ID "Clang"
#elif defined(__BORLANDC__) #elif defined(__BORLANDC__)
# define COMPILER_ID "Borland" # define COMPILER_ID "Borland"

View File

@ -11,6 +11,9 @@
#elif defined(__INTEL_COMPILER) || defined(__ICC) #elif defined(__INTEL_COMPILER) || defined(__ICC)
# define COMPILER_ID "Intel" # define COMPILER_ID "Intel"
#elif defined(__clang__)
# define COMPILER_ID "Clang"
#elif defined(__BORLANDC__) #elif defined(__BORLANDC__)
# define COMPILER_ID "Borland" # define COMPILER_ID "Borland"

View File

@ -0,0 +1 @@
include(Compiler/GNU-C)

View File

@ -0,0 +1 @@
include(Compiler/GNU-CXX)

View File

@ -0,0 +1 @@
INCLUDE(Platform/Linux-GNU-C)

View File

@ -0,0 +1 @@
INCLUDE(Platform/Linux-GNU-CXX)