From: Viktor Kutuzov Date: Wed, 9 Apr 2014 11:43:34 +0000 (+0000) Subject: Add support for building LLVM on FreeBSD 9.2 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=d97cbff5286cefd2bae14c36e912cadca7ea8249;p=oota-llvm.git Add support for building LLVM on FreeBSD 9.2 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205847 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/cmake/config-ix.cmake b/cmake/config-ix.cmake index f007b37dc30..197caf9355b 100755 --- a/cmake/config-ix.cmake +++ b/cmake/config-ix.cmake @@ -17,6 +17,11 @@ if( UNIX AND NOT BEOS ) # Used by check_symbol_exists: set(CMAKE_REQUIRED_LIBRARIES m) endif() +# x86_64 FreeBSD 9.2 requires libcxxrt to be specified explicitly. +if( CMAKE_SYSTEM MATCHES "FreeBSD-9.2-RELEASE" AND + CMAKE_SIZEOF_VOID_P EQUAL 8 ) + list(APPEND CMAKE_REQUIRED_LIBRARIES "cxxrt") +endif() # Helper macros and functions macro(add_cxx_include result files)