From 4db99c8b541592729cc0f8b2d1918bcb8c45f99f Mon Sep 17 00:00:00 2001 From: michaelrj-google <71531609+michaelrj-google@users.noreply.github.com> Date: Fri, 17 Nov 2023 11:32:27 -0800 Subject: [libc] Add base for target config within cmake (#72318) Currently the only way to add or remove entrypoints is to modify the entrypoints.txt file for the current target. This isn't ideal since a user would have to carry a diff for this file when updating their checkout. This patch adds a basic mechanism to allow the user to remove entrypoints without modifying the repository. --- libc/cmake/modules/system_features/check_sys_random.cpp | 1 + 1 file changed, 1 insertion(+) create mode 100644 libc/cmake/modules/system_features/check_sys_random.cpp (limited to 'libc/cmake/modules') diff --git a/libc/cmake/modules/system_features/check_sys_random.cpp b/libc/cmake/modules/system_features/check_sys_random.cpp new file mode 100644 index 0000000..7ab1949 --- /dev/null +++ b/libc/cmake/modules/system_features/check_sys_random.cpp @@ -0,0 +1 @@ +#include -- cgit v1.1