diff options
author | Fangrui Song <i@maskray.me> | 2022-10-25 00:24:25 -0700 |
---|---|---|
committer | Fangrui Song <i@maskray.me> | 2022-10-25 00:24:25 -0700 |
commit | 3a3603ff99ffd7dd7c8d166ba6d15078e33a5f71 (patch) | |
tree | 98c50f40f4b043c23d4662d4334ec58d387117a1 /clang/cmake | |
parent | e6c8418aab0bd5e459f3b286a603e5b88a4fb1a1 (diff) | |
download | llvm-3a3603ff99ffd7dd7c8d166ba6d15078e33a5f71.tar.gz |
[clang] Replace BACKEND_PACKAGE_STRING with LLVM_VERSION_STRING
420d7ccbac0f499a6ff9595bdbfa99cd3376df22 introduced BACKEND_PACKAGE_STRING to
replace `PACKAGE_VERSION` (llvm/Config/config.h) to support standalone builds.
This is used in the output of `clang -cc1 -v`.
Since llvm-config.h is available for both standalone and non-standalone builds,
we can just use `LLVM_VERSION_STRING` from llvm-config.h.
clang/cmake/modules/AddClang.cmake uses `VERSION_STRING "${CLANG_VERSION} (${BACKEND_PACKAGE_STRING})"`.
Just simplify it to `"${CLANG_VERSION}"` so that we can remove the CMake
variable BACKEND_PACKAGE_STRING.
Reviewed By: tstellar
Differential Revision: https://reviews.llvm.org/D136660
Diffstat (limited to 'clang/cmake')
-rw-r--r-- | clang/cmake/modules/AddClang.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/cmake/modules/AddClang.cmake b/clang/cmake/modules/AddClang.cmake index 495ed1c6f18a..75b0080f6715 100644 --- a/clang/cmake/modules/AddClang.cmake +++ b/clang/cmake/modules/AddClang.cmake @@ -37,7 +37,7 @@ macro(set_clang_windows_version_resource_properties name) VERSION_MAJOR ${CLANG_VERSION_MAJOR} VERSION_MINOR ${CLANG_VERSION_MINOR} VERSION_PATCHLEVEL ${CLANG_VERSION_PATCHLEVEL} - VERSION_STRING "${CLANG_VERSION} (${BACKEND_PACKAGE_STRING})" + VERSION_STRING "${CLANG_VERSION}" PRODUCT_NAME "clang") endif() endmacro() |