mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-30 07:00:45 +00:00
Add to the list of cmake files the object file, not the asm file. This
is necessary for executing the custom command that runs the assember. Fixes PR8877. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122649 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
023c63351e
commit
ba6f918a6d
@ -47,7 +47,7 @@ if( CMAKE_CL_64 )
|
||||
MAIN_DEPENDENCY X86CompilationCallback_Win64.asm
|
||||
COMMAND ${CMAKE_ASM_MASM_COMPILER} /Fo ${CMAKE_CURRENT_BINARY_DIR}/X86CompilationCallback_Win64.obj /c ${CMAKE_CURRENT_SOURCE_DIR}/X86CompilationCallback_Win64.asm
|
||||
)
|
||||
set(sources ${sources} X86CompilationCallback_Win64.asm)
|
||||
set(sources ${sources} ${CMAKE_CURRENT_BINARY_DIR}/X86CompilationCallback_Win64.obj)
|
||||
endif()
|
||||
|
||||
add_llvm_target(X86CodeGen ${sources})
|
||||
|
Loading…
Reference in New Issue
Block a user