[libc-commits] [libc] d11e49f - [libc][NFC] Fix misspelled variable name in cmake message

Joseph Huber via libc-commits libc-commits at lists.llvm.org
Thu Mar 23 14:31:01 PDT 2023


Author: Joseph Huber
Date: 2023-03-23T16:30:31-05:00
New Revision: d11e49f0c8c52d715cd0f7dea436ac5e0dce9c42

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

LOG: [libc][NFC] Fix misspelled variable name in cmake message

Added: 
    

Modified: 
    libc/cmake/modules/prepare_libc_gpu_build.cmake

Removed: 
    


################################################################################
diff  --git a/libc/cmake/modules/prepare_libc_gpu_build.cmake b/libc/cmake/modules/prepare_libc_gpu_build.cmake
index 1f9b68afd95cd..fe0f4ef4826d5 100644
--- a/libc/cmake/modules/prepare_libc_gpu_build.cmake
+++ b/libc/cmake/modules/prepare_libc_gpu_build.cmake
@@ -45,7 +45,7 @@ endif()
 set(LIBC_GPU_TEST_ARCHITECTURE "" CACHE STRING "Architecture for the GPU tests")
 if(LIBC_GPU_TEST_ARCHITECTURE)
   message(STATUS "Using user-specified GPU architecture for testing "
-                 "'${LIBC_GPU_TARGET_ARCHITECTURE}'")
+                 "'${LIBC_GPU_TEST_ARCHITECTURE}'")
   if("${LIBC_GPU_TEST_ARCHITECTURE}" IN_LIST all_amdgpu_architectures)
     set(LIBC_GPU_TARGET_ARCHITECTURE_IS_AMDGPU TRUE)
     set(LIBC_GPU_TARGET_TRIPLE "amdgcn-amd-amdhsa")


        


More information about the libc-commits mailing list