Files
IronFox/scripts/env_target_helpers.sh
celenity 1a682e143e IronFox v147.0.2
ironfox-oss/IronFox!121
____

## Changes

- Updated to Firefox [`147.0.2`](https://firefox.com/firefox/android/147.0.2/releasenotes/).
- Updated to Rust [`1.93.0`](https://releases.rs/docs/1.93.0/).
- Other minor tweaks, fixes, and enhancements.

MR-author: celenity <celenity@celenity.dev>
Co-authored-by: Weblate <hosted@weblate.org>
Approved-by: Akash Yadav <itsaky01@gmail.com>
Merged-by: celenity <celenity@celenity.dev>
2026-01-27 21:18:49 +00:00

21 lines
765 B
Bash

# IronFox build target environment variables
## This is used for configuring the target build/architecture/type.
## CAUTION: Do NOT source this directly!
## Source 'env_target.sh' instead.
if [[ "${IRONFOX_TARGET_ARCH}" == 'arm64' ]]; then
export IRONFOX_TARGET_ABI='arm64-v8a'
export IRONFOX_TARGET_RUST='arm64'
elif [[ "${IRONFOX_TARGET_ARCH}" == 'arm' ]]; then
export IRONFOX_TARGET_ABI='armeabi-v7a'
export IRONFOX_TARGET_RUST='arm'
elif [[ "${IRONFOX_TARGET_ARCH}" == 'x86_64' ]]; then
export IRONFOX_TARGET_ABI='x86_64'
export IRONFOX_TARGET_RUST='x86_64'
elif [[ "${IRONFOX_TARGET_ARCH}" == 'bundle' ]]; then
export IRONFOX_TARGET_ABI='"arm64-v8a", "armeabi-v7a", "x86_64"'
export IRONFOX_TARGET_RUST='arm64,arm,x86_64'
fi