Skip to content

Commit da6b96e

Browse files
committed
[do not submit] testing purposes only
1 parent ec48d15 commit da6b96e

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

.github/workflows/libc-fullbuild-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
build_type: [Debug, Release, MinSizeRel]
18+
# build_type: [Debug, Release, MinSizeRel]
1919
include:
2020
- os: ubuntu-24.04
2121
ccache-variant: sccache

.github/workflows/libc-overlay-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
# Set fail-fast to false to ensure that feedback is delivered for all matrix combinations.
1717
fail-fast: false
1818
matrix:
19-
build_type: [Debug, Release, MinSizeRel]
19+
# build_type: [Debug, Release, MinSizeRel]
2020
include:
2121
# TODO: add linux gcc when it is fixed
2222
- os: ubuntu-24.04

libc/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
cmake_minimum_required(VERSION 3.20.0)
22
set(LLVM_SUBPROJECT_TITLE "libc")
33

4+
# nothing change
5+
46
if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
57
message(FATAL_ERROR "Builds rooted in the libc directory are not supported. "
68
"Builds should be rooted in the runtimes directory instead. "

libc/src/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ add_subdirectory(unistd)
1919
add_subdirectory(wchar)
2020

2121
if(${LIBC_TARGET_OS} STREQUAL "linux")
22+
message(FATAL_ERROR "hello world")
2223
add_subdirectory(dirent)
2324
add_subdirectory(fcntl)
2425
add_subdirectory(poll)

0 commit comments

Comments
 (0)