From 1364b42aad2514bb2f37f7d1632a70367fc6ca49 Mon Sep 17 00:00:00 2001 From: Ben Date: Wed, 18 Sep 2024 19:09:30 +0000 Subject: [PATCH] pw_bluetooth_sapphire: Only statically link libc++ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Other static libraries aren't supported by the SDK. Bug: b/367805596 Change-Id: I2de1d412a468b99a6c250c28a538e59e8036cf2c Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/236792 Lint: Lint 🤖 Pigweed-Auto-Submit: Ben Lawson Reviewed-by: Faraaz Sareshwala Docs-Not-Needed: Ben Lawson Commit-Queue: Ben Lawson --- pw_bluetooth_sapphire/fuchsia/bt_host/BUILD.bazel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pw_bluetooth_sapphire/fuchsia/bt_host/BUILD.bazel b/pw_bluetooth_sapphire/fuchsia/bt_host/BUILD.bazel index 37c80d6eb0..c5bca04104 100644 --- a/pw_bluetooth_sapphire/fuchsia/bt_host/BUILD.bazel +++ b/pw_bluetooth_sapphire/fuchsia/bt_host/BUILD.bazel @@ -93,7 +93,7 @@ fuchsia_cc_binary( srcs = ["main.cc"], bin_name = "bt_host", # TODO: b/367805596 - Remove when dynamic linking size budget issues are resolved. - copts = ["-static"], + features = ["static_cpp_standard_library"], deps = [ ":sources", "//pw_log_fuchsia",