mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-09 16:45:03 +00:00
Disable compilation of llvm-pdbdump for versions of MSVC < 2013.
Certain aspects of llvm-pdbdump require language support only present in MSVC 2013 and higher. Since this is strictly a utility, and since we hope to drop support for MSVC 2012 soon, don't build this unless MSVC 2013 or higher. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227479 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
df31d7bea7
commit
3a5a587abf
@ -61,7 +61,10 @@ add_llvm_tool_subdirectory(yaml2obj)
|
||||
|
||||
add_llvm_tool_subdirectory(llvm-go)
|
||||
|
||||
if(MSVC)
|
||||
if(MSVC AND NOT(MSVC_VERSION LESS 1800))
|
||||
# Certain aspects of llvm-pdbdump require language support only present in
|
||||
# MSVC 2013 and higher. Since this is strictly a utility, and since we hope
|
||||
# to drop support for MSVC 2012 soon, don't build this for MSVC < 2013.
|
||||
add_llvm_tool_subdirectory(llvm-pdbdump)
|
||||
endif()
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user