mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
bd574a6d8f
This restores commit r278330, with fixes for a few bot failures: - Fix a late change I had made to the save temps output file that I missed due to existing files sitting on my disk - Fix a bunch of Windows bot failures with "ambiguous call to overloaded function" due to confusion between llvm::make_unique vs std::make_unique (preface the new make_unique calls with "llvm::") - Attempt to fix a modules bot failure by adding a missing include to LTO/Config.h. Original change: Resolution-based LTO API. Summary: This introduces a resolution-based LTO API. The main advantage of this API over existing APIs is that it allows the linker to supply a resolution for each symbol in each object, rather than the combined object as a whole. This will become increasingly important for use cases such as ThinLTO which require us to process symbol resolutions in a more complicated way than just adjusting linkage. Patch by Peter Collingbourne. Reviewers: rafael, tejohnson, mehdi_amini Subscribers: lhames, tejohnson, mehdi_amini, llvm-commits Differential Revision: https://reviews.llvm.org/D20268 llvm-svn: 278338
64 lines
1.7 KiB
CMake
64 lines
1.7 KiB
CMake
# Figure out if we can track VC revisions.
|
|
function(find_first_existing_file out_var)
|
|
foreach(file ${ARGN})
|
|
if(EXISTS "${file}")
|
|
set(${out_var} "${file}" PARENT_SCOPE)
|
|
return()
|
|
endif()
|
|
endforeach()
|
|
endfunction()
|
|
|
|
macro(find_first_existing_vc_file out_var path)
|
|
find_first_existing_file(${out_var}
|
|
"${path}/.git/logs/HEAD" # Git
|
|
"${path}/.svn/wc.db" # SVN 1.7
|
|
"${path}/.svn/entries" # SVN 1.6
|
|
)
|
|
endmacro()
|
|
|
|
find_first_existing_vc_file(llvm_vc "${LLVM_MAIN_SRC_DIR}")
|
|
|
|
# The VC revision include that we want to generate.
|
|
set(version_inc "${CMAKE_CURRENT_BINARY_DIR}/LLVMLTORevision.h")
|
|
|
|
set(get_svn_script "${LLVM_MAIN_SRC_DIR}/cmake/modules/GenerateVersionFromCVS.cmake")
|
|
|
|
if(DEFINED llvm_vc)
|
|
# Create custom target to generate the VC revision include.
|
|
add_custom_command(OUTPUT "${version_inc}"
|
|
DEPENDS "${llvm_vc}" "${get_svn_script}"
|
|
COMMAND
|
|
${CMAKE_COMMAND} "-DSOURCE_DIR=${LLVM_MAIN_SRC_DIR}"
|
|
"-DNAME=LLVM_REVISION"
|
|
"-DHEADER_FILE=${version_inc}"
|
|
-P "${get_svn_script}")
|
|
|
|
# Mark the generated header as being generated.
|
|
set_source_files_properties("${version_inc}"
|
|
PROPERTIES GENERATED TRUE
|
|
HEADER_FILE_ONLY TRUE)
|
|
|
|
# Tell Version.cpp that it needs to build with -DHAVE_SVN_VERSION_INC.
|
|
set_source_files_properties(Version.cpp
|
|
PROPERTIES COMPILE_DEFINITIONS "HAVE_SVN_VERSION_INC")
|
|
else()
|
|
# Not producing a VC revision include.
|
|
set(version_inc)
|
|
endif()
|
|
|
|
|
|
add_llvm_library(LLVMLTO
|
|
LTO.cpp
|
|
LTOBackend.cpp
|
|
LTOModule.cpp
|
|
LTOCodeGenerator.cpp
|
|
UpdateCompilerUsed.cpp
|
|
ThinLTOCodeGenerator.cpp
|
|
${version_inc}
|
|
|
|
ADDITIONAL_HEADER_DIRS
|
|
${LLVM_MAIN_INCLUDE_DIR}/llvm/LTO
|
|
)
|
|
|
|
add_dependencies(LLVMLTO intrinsics_gen)
|