[llvm] e5809f0 - [LLVM] Only build the GPU loader utility if it has LLVM-libc (#134141)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 2 17:26:22 PDT 2025
Author: Joseph Huber
Date: 2025-04-02T19:26:19-05:00
New Revision: e5809f01720b9d016f940bc132278f2f2adf0665
URL: https://github.com/llvm/llvm-project/commit/e5809f01720b9d016f940bc132278f2f2adf0665
DIFF: https://github.com/llvm/llvm-project/commit/e5809f01720b9d016f940bc132278f2f2adf0665.diff
LOG: [LLVM] Only build the GPU loader utility if it has LLVM-libc (#134141)
Summary:
There were some discussions about this being included by default. I need
to fix this up and codify the use of LLVM libc inside of LLVM. For now,
just turn it off unless the user requested the `libc` GPU stuff. This
matches the old behavior.
Added:
Modified:
llvm/tools/CMakeLists.txt
Removed:
################################################################################
diff --git a/llvm/tools/CMakeLists.txt b/llvm/tools/CMakeLists.txt
index 9fe6f8c6b9c21..729797aa43f0b 100644
--- a/llvm/tools/CMakeLists.txt
+++ b/llvm/tools/CMakeLists.txt
@@ -9,7 +9,7 @@
# traversing each directory.
create_llvm_tool_options()
-if(NOT LLVM_COMPILER_IS_GCC_COMPATIBLE)
+if(NOT LLVM_COMPILER_IS_GCC_COMPATIBLE OR NOT LLVM_LIBC_GPU_BUILD)
set(LLVM_TOOL_LLVM_GPU_LOADER_BUILD OFF)
endif()
More information about the llvm-commits
mailing list