[libc-commits] [libc] f1190bc - [libc][obvious] fix comparison test cmake

Michael Jones via libc-commits libc-commits at lists.llvm.org
Thu Oct 20 16:23:37 PDT 2022


Author: Michael Jones
Date: 2022-10-20T16:23:32-07:00
New Revision: f1190bc0db9bd3faacd302757426d7d1ab45ed9d

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

LOG: [libc][obvious] fix comparison test cmake

The name of the libc target changed, this patch updates the cmake for
the string to float comparison test to use the correct name.

Reviewed By: sivachandra

Differential Revision: https://reviews.llvm.org/D136388

Added: 
    

Modified: 
    libc/test/src/__support/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/libc/test/src/__support/CMakeLists.txt b/libc/test/src/__support/CMakeLists.txt
index 661f0839ea07d..5a828f082da6a 100644
--- a/libc/test/src/__support/CMakeLists.txt
+++ b/libc/test/src/__support/CMakeLists.txt
@@ -91,7 +91,7 @@ add_executable(
 
 target_link_libraries(libc_str_to_float_comparison_test
   PRIVATE
-    llvmlibc
+    "${LIBC_TARGET}"
 )
 
 add_executable(


        


More information about the libc-commits mailing list