From 5e3e1e0f3cfd4694343a2d578e3ae16ac68ebf36 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Wed, 3 Jan 2024 13:48:10 -0800 Subject: [PATCH] Mimic musl's upstream include path when building musl. NFC (#20944) This is not fixing any known bug but does help with an internal issue we had at google when converting these libraries to bazel rules. --- tools/system_libs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/system_libs.py b/tools/system_libs.py index 09f3b25a711c..c25cc89ac957 100644 --- a/tools/system_libs.py +++ b/tools/system_libs.py @@ -876,6 +876,7 @@ class MuslInternalLibrary(Library): includes = [ 'system/lib/libc/musl/src/internal', 'system/lib/libc/musl/src/include', + 'system/lib/libc/musl/include', 'system/lib/libc', 'system/lib/pthread', ]