Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Split family names in android
Co-authored-by: Urgau <3616612+Urgau@users.noreply.github.com>
  • Loading branch information
workingjubilee and Urgau authored Apr 25, 2024
commit e1746e0ae8d9cbe1b7c4d19aef412565bf9c5b78
2 changes: 1 addition & 1 deletion compiler/rustc_target/src/spec/base/android.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pub fn opts() -> TargetOptions {
let mut base = base::linux::opts();
base.os = "android".into();
// listing families in different orders seems most chaotic. :^)
base.families = cvs!["unix, linux"];
base.families = cvs!["unix", "linux"];
base.is_like_android = true;
base.default_dwarf_version = 2;
base.tls_model = TlsModel::Emulated;
Expand Down