Files
ports/www/firefox/files/patch-bug1628567
T
Jan Beich a398dfcdcd www/firefox: update to 76.0
- Add a workaround for Clang [1]

Changes:	https://www.mozilla.org/firefox/76.0/releasenotes/
PR:		245422
Submitted by:	tobik [1]
Security:	aec18162-eaf3-4e73-a38e-3fd98bc47869
Differential Revision:	https://reviews.freebsd.org/D24326
2020-04-27 23:14:29 +00:00

35 lines
1.2 KiB
Plaintext

Don't pass --target when CC/CXX contains clang
--- third_party/rust/cc/src/lib.rs.orig 2020-04-10 00:57:23 UTC
+++ third_party/rust/cc/src/lib.rs
@@ -2344,28 +2344,7 @@ impl Tool {
}
fn with_features(path: PathBuf, clang_driver: Option<&str>, cuda: bool) -> Self {
- // Try to detect family of the tool from its name, falling back to Gnu.
- let family = if let Some(fname) = path.file_name().and_then(|p| p.to_str()) {
- if fname.contains("clang-cl") {
- ToolFamily::Msvc { clang_cl: true }
- } else if fname.contains("cl")
- && !fname.contains("cloudabi")
- && !fname.contains("uclibc")
- && !fname.contains("clang")
- {
- ToolFamily::Msvc { clang_cl: false }
- } else if fname.contains("clang") {
- match clang_driver {
- Some("cl") => ToolFamily::Msvc { clang_cl: true },
- _ => ToolFamily::Clang,
- }
- } else {
- ToolFamily::Gnu
- }
- } else {
- ToolFamily::Gnu
- };
-
+ let family = ToolFamily::Gnu;
Tool {
path: path,
cc_wrapper_path: None,