[llvm] 03610cd - [runtimes] Fix typo from e787ef86634553131f8e47bd8eaaede987cf20e2

Shoaib Meenai via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 5 23:23:11 PDT 2023


Author: Shoaib Meenai
Date: 2023-04-05T23:22:53-07:00
New Revision: 03610cdeb979831e6996021eef18ce90a95ceab6

URL: https://github.com/llvm/llvm-project/commit/03610cdeb979831e6996021eef18ce90a95ceab6
DIFF: https://github.com/llvm/llvm-project/commit/03610cdeb979831e6996021eef18ce90a95ceab6.diff

LOG: [runtimes] Fix typo from e787ef86634553131f8e47bd8eaaede987cf20e2

The variable name was incorrect, which was breaking runtimes builds.

Added: 
    

Modified: 
    llvm/runtimes/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/llvm/runtimes/CMakeLists.txt b/llvm/runtimes/CMakeLists.txt
index 8cf4365363098..75256c1326be9 100644
--- a/llvm/runtimes/CMakeLists.txt
+++ b/llvm/runtimes/CMakeLists.txt
@@ -316,7 +316,7 @@ function(runtime_register_target name)
   endif()
 
   set(${name}_extra_args ${ARG_CMAKE_ARGS})
-  string(REPLACE ";" "|" LVM_ENABLE_RUNTIMES_PASSTHROUGH "${LLVM_ENABLE_RUNTIMES}")
+  string(REPLACE ";" "|" LLVM_ENABLE_RUNTIMES_PASSTHROUGH "${LLVM_ENABLE_RUNTIMES}")
   list(APPEND ${name}_extra_args -DLLVM_ENABLE_RUNTIMES=${LLVM_ENABLE_RUNTIMES_PASSTHROUGH})
   list(APPEND ${name}_extra_args -DLLVM_USE_LINKER=${LLVM_USE_LINKER})
 


        


More information about the llvm-commits mailing list