about summary refs log tree commit diff
path: root/compiler/rustc_llvm/build.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2022-11-14 06:30:18 +0000
committerbors <bors@rust-lang.org>2022-11-14 06:30:18 +0000
commit96ddd32c4bfb1d78f0cd03eb068b1710a8cebeef (patch)
tree8fb6205431371f9923ca9eac04bbcbc0ce4c2e55 /compiler/rustc_llvm/build.rs
parentf90a4ff26c9743abf612f015c4398d7158b646b6 (diff)
parent4fdd944af46e074807f132d46135f2945b57d1b0 (diff)
downloadrust-96ddd32c4bfb1d78f0cd03eb068b1710a8cebeef.tar.gz
rust-96ddd32c4bfb1d78f0cd03eb068b1710a8cebeef.zip
Auto merge of #104387 - Manishearth:rollup-9e551p5, r=Manishearth
Rollup of 9 pull requests

Successful merges:

 - #103709 (ci: Upgrade dist-x86_64-netbsd to NetBSD 9.0)
 - #103744 (Upgrade cc for working is_flag_supported on cross-compiles)
 - #104105 (llvm: dwo only emitted when object code emitted)
 - #104158 (Return .efi extension for EFI executable)
 - #104181 (Add a few known-bug tests)
 - #104266 (Regression test for coercion of mut-ref to dyn-star)
 - #104300 (Document `Path::parent` behavior around relative paths)
 - #104304 (Enable profiler in dist-s390x-linux)
 - #104362 (Add `delay_span_bug` to `AttrWrapper::take_for_recovery`)

Failed merges:

r? `@ghost`
`@rustbot` modify labels: rollup
Diffstat (limited to 'compiler/rustc_llvm/build.rs')
-rw-r--r--compiler/rustc_llvm/build.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_llvm/build.rs b/compiler/rustc_llvm/build.rs
index 28e092c1eb7..d35e4191cc0 100644
--- a/compiler/rustc_llvm/build.rs
+++ b/compiler/rustc_llvm/build.rs
@@ -334,7 +334,7 @@ fn main() {
         "c++"
     } else if target.contains("netbsd") && llvm_static_stdcpp.is_some() {
         // NetBSD uses a separate library when relocation is required
-        "stdc++_pic"
+        "stdc++_p"
     } else if llvm_use_libcxx.is_some() {
         "c++"
     } else {