mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
Reverts commit r190808 and r190556.
The use of these features in clang has been reverted. llvm-svn: 191785
This commit is contained in:
parent
c52dfda610
commit
1622afa564
@ -2,44 +2,24 @@
|
|||||||
#
|
#
|
||||||
# Input variables:
|
# Input variables:
|
||||||
# FIRST_SOURCE_DIR - First source directory
|
# FIRST_SOURCE_DIR - First source directory
|
||||||
# FIRST_NAME - The macro prefix for the first repository's info
|
# FIRST_REPOSITORY - The macro to define to the first revision number.
|
||||||
# SECOND_SOURCE_DIR - Second source directory (opt)
|
# SECOND_SOURCE_DIR - Second source directory
|
||||||
# SECOND_NAME - The macro prefix for the second repository's info (opt)
|
# SECOND_REPOSITORY - The macro to define to the second revision number.
|
||||||
# HEADER_FILE - The header file to write
|
# HEADER_FILE - The header file to write
|
||||||
#
|
include(FindSubversion)
|
||||||
# The output header will contain macros FIRST_REPOSITORY and FIRST_REVISION,
|
if (Subversion_FOUND AND EXISTS "${FIRST_SOURCE_DIR}/.svn")
|
||||||
# and SECOND_REPOSITORY and SECOND_REVISION if requested, where "FIRST" and
|
# Repository information for the first repository.
|
||||||
# "SECOND" are substituted with the names specified in the input variables.
|
Subversion_WC_INFO(${FIRST_SOURCE_DIR} MY)
|
||||||
|
file(WRITE ${HEADER_FILE}.txt "#define ${FIRST_REPOSITORY} \"${MY_WC_REVISION}\"\n")
|
||||||
|
|
||||||
# Chop off cmake/modules/GetSVN.cmake
|
# Repository information for the second repository.
|
||||||
get_filename_component(LLVM_DIR "${CMAKE_SCRIPT_MODE_FILE}" PATH)
|
if (EXISTS "${SECOND_SOURCE_DIR}/.svn")
|
||||||
get_filename_component(LLVM_DIR "${LLVM_DIR}" PATH)
|
Subversion_WC_INFO(${SECOND_SOURCE_DIR} MY)
|
||||||
get_filename_component(LLVM_DIR "${LLVM_DIR}" PATH)
|
file(APPEND ${HEADER_FILE}.txt
|
||||||
|
"#define ${SECOND_REPOSITORY} \"${MY_WC_REVISION}\"\n")
|
||||||
|
endif ()
|
||||||
|
|
||||||
# Handle strange terminals
|
# Copy the file only if it has changed.
|
||||||
set(ENV{TERM} "dumb")
|
execute_process(COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
||||||
|
${HEADER_FILE}.txt ${HEADER_FILE})
|
||||||
function(append_info name path)
|
|
||||||
execute_process(COMMAND "${LLVM_DIR}/utils/GetSourceVersion" "${path}"
|
|
||||||
OUTPUT_VARIABLE revision)
|
|
||||||
string(STRIP "${revision}" revision)
|
|
||||||
execute_process(COMMAND "${LLVM_DIR}/utils/GetRepositoryPath" "${path}"
|
|
||||||
OUTPUT_VARIABLE repository
|
|
||||||
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
|
||||||
string(STRIP "${repository}" repository)
|
|
||||||
file(APPEND "${HEADER_FILE}.txt"
|
|
||||||
"#define ${name}_REVISION \"${revision}\"\n")
|
|
||||||
file(APPEND "${HEADER_FILE}.txt"
|
|
||||||
"#define ${name}_REPOSITORY \"${repository}\"\n")
|
|
||||||
endfunction()
|
|
||||||
|
|
||||||
append_info(${FIRST_NAME} "${FIRST_SOURCE_DIR}")
|
|
||||||
if(DEFINED SECOND_SOURCE_DIR)
|
|
||||||
append_info(${SECOND_NAME} "${SECOND_SOURCE_DIR}")
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Copy the file only if it has changed.
|
|
||||||
execute_process(COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
||||||
"${HEADER_FILE}.txt" "${HEADER_FILE}")
|
|
||||||
file(REMOVE "${HEADER_FILE}.txt")
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user