mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
Mirror of https://github.com/RPCS3/llvm-mirror
72fcbd73cf
According to MSDN, Visual Studio 2015 included support for std::is_final. Additionally, a bug in the Visual Studio compiler results in the incorrect definition of __cplusplus. Due to the conditions in the else case not holding either, we end up with no definition of LLVM_IS_FINAL when building with MSVC. This has not yet been a problem with LLVM/clang, however, the uses of LLVM_IS_FINAL is more prevalent in swift, which uses the ADT library and causes issues when building lldb with Visual Studio. Workaround the issue by always assuming that the definition of std::is_final is available with Visual Studio. Since we currently require VS 2015+ for building LLVM, this condition should always hold for the users in LLVM/clang (and for swift). llvm-svn: 331282 |
||
---|---|---|
bindings | ||
cmake | ||
docs | ||
examples | ||
include | ||
lib | ||
projects | ||
resources | ||
runtimes | ||
test | ||
tools | ||
unittests | ||
utils | ||
.arcconfig | ||
.clang-format | ||
.clang-tidy | ||
.gitattributes | ||
.gitignore | ||
CMakeLists.txt | ||
CODE_OWNERS.TXT | ||
configure | ||
CREDITS.TXT | ||
LICENSE.TXT | ||
llvm.spec.in | ||
LLVMBuild.txt | ||
README.txt | ||
RELEASE_TESTERS.TXT |
Low Level Virtual Machine (LLVM) ================================ This directory and its subdirectories contain source code for LLVM, a toolkit for the construction of highly optimized compilers, optimizers, and runtime environments. LLVM is open source software. You may freely distribute it under the terms of the license agreement found in LICENSE.txt. Please see the documentation provided in docs/ for further assistance with LLVM, and in particular docs/GettingStarted.rst for getting started with LLVM and docs/README.txt for an overview of LLVM's documentation setup. If you are writing a package for LLVM, see docs/Packaging.rst for our suggestions.