Mercurial > hg > vamp-build-and-test
annotate DEPENDENCIES/generic/include/boost/predef/compiler/llvm.h @ 16:2665513ce2d3
Add boost headers
author | Chris Cannam |
---|---|
date | Tue, 05 Aug 2014 11:11:38 +0100 |
parents | |
children | c530137014c0 |
rev | line source |
---|---|
Chris@16 | 1 /* |
Chris@16 | 2 Copyright Redshift Software, Inc. 2008-2013 |
Chris@16 | 3 Distributed under the Boost Software License, Version 1.0. |
Chris@16 | 4 (See accompanying file LICENSE_1_0.txt or copy at |
Chris@16 | 5 http://www.boost.org/LICENSE_1_0.txt) |
Chris@16 | 6 */ |
Chris@16 | 7 |
Chris@16 | 8 #ifndef BOOST_PREDEF_COMPILER_LLVM_H |
Chris@16 | 9 #define BOOST_PREDEF_COMPILER_LLVM_H |
Chris@16 | 10 |
Chris@16 | 11 #include <boost/predef/version_number.h> |
Chris@16 | 12 #include <boost/predef/make.h> |
Chris@16 | 13 |
Chris@16 | 14 /*` |
Chris@16 | 15 [heading `BOOST_COMP_LLVM`] |
Chris@16 | 16 |
Chris@16 | 17 [@http://en.wikipedia.org/wiki/LLVM LLVM] compiler. |
Chris@16 | 18 |
Chris@16 | 19 [table |
Chris@16 | 20 [[__predef_symbol__] [__predef_version__]] |
Chris@16 | 21 |
Chris@16 | 22 [[`__llvm__`] [__predef_detection__]] |
Chris@16 | 23 ] |
Chris@16 | 24 */ |
Chris@16 | 25 |
Chris@16 | 26 #define BOOST_COMP_LLVM BOOST_VERSION_NUMBER_NOT_AVAILABLE |
Chris@16 | 27 |
Chris@16 | 28 #if defined(__llvm__) |
Chris@16 | 29 # undef BOOST_COMP_LLVM |
Chris@16 | 30 # define BOOST_COMP_LLVM BOOST_VERSION_NUMBER_AVAILABLE |
Chris@16 | 31 #endif |
Chris@16 | 32 |
Chris@16 | 33 #if BOOST_COMP_LLVM |
Chris@16 | 34 # define BOOST_COMP_LLVM_AVAILABLE |
Chris@16 | 35 #endif |
Chris@16 | 36 |
Chris@16 | 37 #define BOOST_COMP_LLVM_NAME "LLVM" |
Chris@16 | 38 |
Chris@16 | 39 #include <boost/predef/detail/test.h> |
Chris@16 | 40 BOOST_PREDEF_DECLARE_TEST(BOOST_COMP_LLVM,BOOST_COMP_LLVM_NAME) |
Chris@16 | 41 |
Chris@16 | 42 |
Chris@16 | 43 #endif |