commit | 8b60c90f3641591b65c4e153113aea562f1fab94 | [log] [tgz] |
---|---|---|
author | Keith Smiley <keithbsmiley@gmail.com> | Thu Jan 27 05:47:58 2022 -0800 |
committer | Copybara-Service <copybara-worker@google.com> | Thu Jan 27 05:49:23 2022 -0800 |
tree | 95b1dfd6a4102c2bd1e95e200089f43bbad8b814 | |
parent | 6c31c1d4cad129d842937027b2b1b9cfcaed1e46 [diff] [blame] |
Remove uses of -lstdc++ on darwin This flag has been invalid seemingly since macOS 10.9 from 2013. By default clang remaps this back to -lc++, but if your linkopts pass -nodefaultlibs this is not the case, in which case this invalid flag fails the link. This happened for rust builds where the rust driver passes this flag intentionally. For more info see https://github.com/bazelbuild/bazel/issues/14395#issuecomment-1009490593 Fixes https://github.com/google/cargo-raze/issues/247 https://github.com/bazelbuild/bazel/issues/14395 https://github.com/bazelbuild/rules_rust/issues/226 Closes #14542. PiperOrigin-RevId: 424588734
diff --git a/tools/cpp/cc_toolchain_config.bzl b/tools/cpp/cc_toolchain_config.bzl index 807e769..821dfc0 100644 --- a/tools/cpp/cc_toolchain_config.bzl +++ b/tools/cpp/cc_toolchain_config.bzl
@@ -395,7 +395,7 @@ flag_groups = [ flag_group( flags = [ - "-lstdc++", + "-lc++", "-undefined", "dynamic_lookup", "-headerpad_max_install_names",