mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-27 14:34:58 +00:00
disable optimizations in this directory for MSVC9. This avoids
an optimizer infinite loop on the file, PR6866. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101854 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3974ade503
commit
d7aba875c1
@ -4,4 +4,11 @@ add_llvm_library(LLVMX86Disassembler
|
||||
X86Disassembler.cpp
|
||||
X86DisassemblerDecoder.c
|
||||
)
|
||||
# workaround for hanging compilation on MSVC9
|
||||
if( MSVC_VERSION EQUAL 1500 )
|
||||
set_property(
|
||||
SOURCE X86Disassembler.cpp
|
||||
PROPERTY COMPILE_FLAGS "/Od"
|
||||
)
|
||||
endif()
|
||||
add_dependencies(LLVMX86Disassembler X86CodeGenTable_gen)
|
||||
|
Loading…
x
Reference in New Issue
Block a user