[llvm] [libc][bazel] Prevent LIBC_NAMESPACE leakeage (PR #70455)

Guillaume Chatelet via llvm-commits llvm-commits at lists.llvm.org
Mon Nov 6 06:58:46 PST 2023


================
@@ -48,7 +48,7 @@ def _libc_library(name, hidden, copts = [], deps = [], **kwargs):
 # Any library which does not define a public function should be listed with
 # libc_support_library.
 def libc_support_library(name, **kwargs):
-    _libc_library(name = name, hidden = True, **kwargs)
+    _libc_library(name = name, hidden = False, **kwargs)
----------------
gchatelet wrote:

@lntue does it look good to you?

https://github.com/llvm/llvm-project/pull/70455


More information about the llvm-commits mailing list