Skip to content

Commit

Permalink
Split family names in android
Browse files Browse the repository at this point in the history
Co-authored-by: Urgau <3616612+Urgau@users.noreply.github.com>
  • Loading branch information
workingjubilee and Urgau authored Apr 25, 2024
1 parent e6199bd commit e1746e0
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit e1746e0

Please sign in to comment.