[libc-commits] [libc] [llvm] [do not submit] testing purposes only (PR #145984)

Amy Huang via libc-commits libc-commits at lists.llvm.org
Fri Jun 27 11:24:06 PDT 2025


https://github.com/amykhuang updated https://github.com/llvm/llvm-project/pull/145984

>From 02c50dc5f2f620817ecef7bbfe54f722b4cc59a9 Mon Sep 17 00:00:00 2001
From: Amy Huang <akhuang at google.com>
Date: Thu, 26 Jun 2025 15:41:32 -0700
Subject: [PATCH] [do not submit] testing purposes only

---
 .github/workflows/libc-fullbuild-tests.yml | 2 +-
 libc/CMakeLists.txt                        | 2 ++
 libc/src/CMakeLists.txt                    | 1 +
 3 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/libc-fullbuild-tests.yml b/.github/workflows/libc-fullbuild-tests.yml
index 24d75f58d45e0..c4b195dd82cab 100644
--- a/.github/workflows/libc-fullbuild-tests.yml
+++ b/.github/workflows/libc-fullbuild-tests.yml
@@ -15,7 +15,7 @@ jobs:
     strategy:
       fail-fast: false
       matrix:
-        build_type: [Debug, Release, MinSizeRel]
+        # build_type: [Debug, Release, MinSizeRel]
         include:
           - os: ubuntu-24.04
             ccache-variant: sccache
diff --git a/libc/CMakeLists.txt b/libc/CMakeLists.txt
index 507b3aa88babf..9197281e73099 100644
--- a/libc/CMakeLists.txt
+++ b/libc/CMakeLists.txt
@@ -1,6 +1,8 @@
 cmake_minimum_required(VERSION 3.20.0)
 set(LLVM_SUBPROJECT_TITLE "libc")
 
+# nothing change
+
 if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
   message(FATAL_ERROR "Builds rooted in the libc directory are not supported. "
     "Builds should be rooted in the runtimes directory instead. "
diff --git a/libc/src/CMakeLists.txt b/libc/src/CMakeLists.txt
index a665253c4cc03..542c75db71853 100644
--- a/libc/src/CMakeLists.txt
+++ b/libc/src/CMakeLists.txt
@@ -19,6 +19,7 @@ add_subdirectory(unistd)
 add_subdirectory(wchar)
 
 if(${LIBC_TARGET_OS} STREQUAL "linux")
+  message(FATAL_ERROR "hello world")
   add_subdirectory(dirent)
   add_subdirectory(fcntl)
   add_subdirectory(poll)



More information about the libc-commits mailing list