mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-04 05:31:51 +00:00
Build LTO as a static library too.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127549 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
14b2a59301
commit
54efb7371a
@ -46,10 +46,10 @@ add_subdirectory(llvm-stub)
|
||||
add_subdirectory(edis)
|
||||
add_subdirectory(llvmc)
|
||||
|
||||
add_subdirectory(lto)
|
||||
if( LLVM_ENABLE_PIC )
|
||||
# TODO: support other systems:
|
||||
if( CMAKE_SYSTEM_NAME STREQUAL "Linux" )
|
||||
add_subdirectory(lto)
|
||||
add_subdirectory(gold)
|
||||
endif()
|
||||
endif()
|
||||
|
@ -4,12 +4,16 @@ set(LLVM_LINK_COMPONENTS
|
||||
|
||||
add_definitions( -DLLVM_VERSION_INFO=\"${PACKAGE_VERSION}\" )
|
||||
|
||||
# TODO: build a static library too.
|
||||
set(BUILD_SHARED_LIBS ON)
|
||||
|
||||
add_llvm_library(LTO
|
||||
set(SOURCES
|
||||
LTOCodeGenerator.cpp
|
||||
lto.cpp
|
||||
LTOModule.cpp
|
||||
)
|
||||
|
||||
add_llvm_library(LTO ${SOURCES})
|
||||
|
||||
if( NOT WIN32 AND LLVM_ENABLE_PIC )
|
||||
set(BUILD_SHARED_LIBS ON)
|
||||
add_llvm_library(LTO_dll ${SOURCES})
|
||||
set_property(TARGET LTO_dll PROPERTY OUTPUT_NAME "LTO")
|
||||
endif()
|
||||
|
Loading…
x
Reference in New Issue
Block a user