commit: 6ecf3061626e43777c39a44594dba467a29b185b Author: mojyack <mojyack <AT> gmail <DOT> com> AuthorDate: Sun May 12 04:51:47 2024 +0000 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org> CommitDate: Mon May 13 06:48:39 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ecf3061
www-client/firefox: support aarch64-unknown-linux-musl Signed-off-by: mojyack <mojyack <AT> gmail.com> Closes: https://github.com/gentoo/gentoo/pull/36647 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org> www-client/firefox/firefox-115.10.0.ebuild | 2 ++ www-client/firefox/firefox-115.9.0.ebuild | 2 ++ www-client/firefox/firefox-115.9.1.ebuild | 2 ++ www-client/firefox/firefox-125.0.2.ebuild | 2 ++ www-client/firefox/firefox-125.0.3.ebuild | 2 ++ 5 files changed, 10 insertions(+) diff --git a/www-client/firefox/firefox-115.10.0.ebuild b/www-client/firefox/firefox-115.10.0.ebuild index d5bbc0d6b106..0edc08563f46 100644 --- a/www-client/firefox/firefox-115.10.0.ebuild +++ b/www-client/firefox/firefox-115.10.0.ebuild @@ -693,6 +693,8 @@ src_prepare() { export RUST_TARGET="x86_64-unknown-linux-musl" elif use x86 ; then export RUST_TARGET="i686-unknown-linux-musl" + elif use arm64 ; then + export RUST_TARGET="aarch64-unknown-linux-musl" else die "Unknown musl chost, please post your rustc -vV along with emerge --info on Gentoo's bug #915651" fi diff --git a/www-client/firefox/firefox-115.9.0.ebuild b/www-client/firefox/firefox-115.9.0.ebuild index 331790eb878d..281dc76598dc 100644 --- a/www-client/firefox/firefox-115.9.0.ebuild +++ b/www-client/firefox/firefox-115.9.0.ebuild @@ -693,6 +693,8 @@ src_prepare() { export RUST_TARGET="x86_64-unknown-linux-musl" elif use x86 ; then export RUST_TARGET="i686-unknown-linux-musl" + elif use arm64 ; then + export RUST_TARGET="aarch64-unknown-linux-musl" else die "Unknown musl chost, please post your rustc -vV along with emerge --info on Gentoo's bug #915651" fi diff --git a/www-client/firefox/firefox-115.9.1.ebuild b/www-client/firefox/firefox-115.9.1.ebuild index d07acf7df8f4..731334c2bbdd 100644 --- a/www-client/firefox/firefox-115.9.1.ebuild +++ b/www-client/firefox/firefox-115.9.1.ebuild @@ -693,6 +693,8 @@ src_prepare() { export RUST_TARGET="x86_64-unknown-linux-musl" elif use x86 ; then export RUST_TARGET="i686-unknown-linux-musl" + elif use arm64 ; then + export RUST_TARGET="aarch64-unknown-linux-musl" else die "Unknown musl chost, please post your rustc -vV along with emerge --info on Gentoo's bug #915651" fi diff --git a/www-client/firefox/firefox-125.0.2.ebuild b/www-client/firefox/firefox-125.0.2.ebuild index 52b150e3f0ef..7c34e086a5d2 100644 --- a/www-client/firefox/firefox-125.0.2.ebuild +++ b/www-client/firefox/firefox-125.0.2.ebuild @@ -635,6 +635,8 @@ src_prepare() { export RUST_TARGET="x86_64-unknown-linux-musl" elif use x86 ; then export RUST_TARGET="i686-unknown-linux-musl" + elif use arm64 ; then + export RUST_TARGET="aarch64-unknown-linux-musl" else die "Unknown musl chost, please post your rustc -vV along with emerge --info on Gentoo's bug #915651" fi diff --git a/www-client/firefox/firefox-125.0.3.ebuild b/www-client/firefox/firefox-125.0.3.ebuild index 1fdcfca9cbe0..d2c697706ca3 100644 --- a/www-client/firefox/firefox-125.0.3.ebuild +++ b/www-client/firefox/firefox-125.0.3.ebuild @@ -631,6 +631,8 @@ src_prepare() { export RUST_TARGET="x86_64-unknown-linux-musl" elif use x86 ; then export RUST_TARGET="i686-unknown-linux-musl" + elif use arm64 ; then + export RUST_TARGET="aarch64-unknown-linux-musl" else die "Unknown musl chost, please post your rustc -vV along with emerge --info on Gentoo's bug #915651" fi
