From 6d8d7a3acdebf5979b93629a2641ba1bf06c574b Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Thu, 24 Oct 2024 10:57:02 -0700 Subject: [PATCH] [gn] disable building libc++ shared lib It's currently broken by #91651. Stop buildling libcxx src files until that is sorted out. --- llvm/utils/gn/secondary/BUILD.gn | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/llvm/utils/gn/secondary/BUILD.gn b/llvm/utils/gn/secondary/BUILD.gn index 7f6b4cb43239f9..5590a5ba195e2b 100644 --- a/llvm/utils/gn/secondary/BUILD.gn +++ b/llvm/utils/gn/secondary/BUILD.gn @@ -15,7 +15,8 @@ group("default") { "//lldb/test", "//llvm/test", ] - if (current_os == "linux") { + # FIXME: Reenable once libc hand-in-hand is figured out. + if (false && current_os == "linux") { deps += [ "//libcxx", "//libcxxabi",