You've already forked linux-packaging-mono
acceptance-tests
data
debian
docs
external
Newtonsoft.Json
api-doc-tools
api-snapshot
aspnetwebstack
bdwgc
binary-reference-assemblies
bockbuild
boringssl
cecil
cecil-legacy
corefx
corert
helix-binaries
ikdasm
ikvm
illinker-test-assets
linker
llvm-project
clang
clang-tools-extra
compiler-rt
eng
libcxx
libcxxabi
libunwind
lld
lldb
llvm
bindings
cmake
modules
AddLLVM.cmake
AddLLVMDefinitions.cmake
AddOCaml.cmake
AddSphinxTarget.cmake
CMakeLists.txt
CheckAtomic.cmake
CheckCompilerVersion.cmake
CheckLinkerFlag.cmake
ChooseMSVCCRT.cmake
CrossCompile.cmake
DetermineGCCCompatible.cmake
FindOCaml.cmake
FindSphinx.cmake
GenerateVersionFromCVS.cmake
GetHostTriple.cmake
GetSVN.cmake
HandleLLVMOptions.cmake
HandleLLVMStdlib.cmake
LLVM-Config.cmake
LLVMConfig.cmake.in
LLVMConfigVersion.cmake.in
LLVMExternalProjectUtils.cmake
LLVMInstallSymlink.cmake
LLVMProcessSources.cmake
NATIVE.cmake
TableGen.cmake
VersionFromVCS.cmake
platforms
README
config-ix.cmake
config.guess
dummy.cpp
nsis_icon.ico
nsis_logo.bmp
docs
examples
include
lib
projects
resources
runtimes
scripts
test
tools
unittests
utils
.arcconfig
.clang-format
.clang-tidy
.gitattributes
.gitignore
CMakeLists.txt
CODE_OWNERS.TXT
CREDITS.TXT
LICENSE.TXT
LLVMBuild.txt
README.txt
RELEASE_TESTERS.TXT
configure
llvm.spec.in
version.txt.in
nuget
openmp
polly
Directory.Build.props
Directory.Build.targets
NuGet.config
azure-pipelines.yml
build.cmd
build.sh
dir.common.props
global.json
llvm.proj
mxe-Win64.cmake.in
nuget-buildtasks
nunit-lite
roslyn-binaries
rx
xunit-binaries
how-to-bump-roslyn-binaries.md
ikvm-native
llvm
m4
man
mcs
mono
msvc
netcore
po
runtime
samples
scripts
support
tools
COPYING.LIB
LICENSE
Makefile.am
Makefile.in
NEWS
README.md
acinclude.m4
aclocal.m4
autogen.sh
code_of_conduct.md
compile
config.guess
config.h.in
config.rpath
config.sub
configure
configure.ac
depcomp
install-sh
ltmain.sh
missing
mkinstalldirs
mono-uninstalled.pc.in
test-driver
winconfig.h
53 lines
2.2 KiB
CMake
53 lines
2.2 KiB
CMake
![]() |
# Check if the host compiler is new enough. LLVM requires at least GCC 4.8,
|
||
|
# MSVC 2015 (Update 3), or Clang 3.1.
|
||
|
|
||
|
include(CheckCXXSourceCompiles)
|
||
|
|
||
|
if(NOT DEFINED LLVM_COMPILER_CHECKED)
|
||
|
set(LLVM_COMPILER_CHECKED ON)
|
||
|
|
||
|
if(NOT LLVM_FORCE_USE_OLD_TOOLCHAIN)
|
||
|
if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
||
|
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.8)
|
||
|
message(FATAL_ERROR "Host GCC version must be at least 4.8!")
|
||
|
endif()
|
||
|
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
|
||
|
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 3.1)
|
||
|
message(FATAL_ERROR "Host Clang version must be at least 3.1!")
|
||
|
endif()
|
||
|
|
||
|
if (CMAKE_CXX_SIMULATE_ID MATCHES "MSVC")
|
||
|
if (CMAKE_CXX_SIMULATE_VERSION VERSION_LESS 19.0)
|
||
|
message(FATAL_ERROR "Host Clang must have at least -fms-compatibility-version=19.0")
|
||
|
endif()
|
||
|
set(CLANG_CL 1)
|
||
|
elseif(NOT LLVM_ENABLE_LIBCXX)
|
||
|
# Otherwise, test that we aren't using too old of a version of libstdc++
|
||
|
# with the Clang compiler. This is tricky as there is no real way to
|
||
|
# check the version of libstdc++ directly. Instead we test for a known
|
||
|
# bug in libstdc++4.6 that is fixed in libstdc++4.7.
|
||
|
set(OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS})
|
||
|
set(OLD_CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES})
|
||
|
set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -std=c++0x")
|
||
|
check_cxx_source_compiles("
|
||
|
#include <atomic>
|
||
|
std::atomic<float> x(0.0f);
|
||
|
int main() { return (float)x; }"
|
||
|
LLVM_NO_OLD_LIBSTDCXX)
|
||
|
if(NOT LLVM_NO_OLD_LIBSTDCXX)
|
||
|
message(FATAL_ERROR "Host Clang must be able to find libstdc++4.8 or newer!")
|
||
|
endif()
|
||
|
set(CMAKE_REQUIRED_FLAGS ${OLD_CMAKE_REQUIRED_FLAGS})
|
||
|
set(CMAKE_REQUIRED_LIBRARIES ${OLD_CMAKE_REQUIRED_LIBRARIES})
|
||
|
endif()
|
||
|
elseif(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
|
||
|
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 19.0)
|
||
|
message(FATAL_ERROR "Host Visual Studio must be at least 2015")
|
||
|
elseif(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 19.00.24213.1)
|
||
|
message(WARNING "Host Visual Studio should at least be 2015 Update 3 (MSVC 19.00.24213.1)"
|
||
|
" due to miscompiles from earlier versions")
|
||
|
endif()
|
||
|
endif()
|
||
|
endif()
|
||
|
endif()
|