Skip to content

Commit 055d278

Browse files
committed
Same problem for armv7a
1 parent 2f4016e commit 055d278

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

overlays/linux-cross.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ let
7575
# Also for GHC #15275
7676
++ lib.optionals hostPlatform.isAarch64 ["--gcc-option=-fPIC"];
7777

78-
# Wrapper to output a warning for aarch64 Android
78+
# Wrapper to output a warning for Android
7979
qemuNotSupportedWarning = writeShellScriptBin "warning-wrapper" ''
80-
echo "Warning: Running aarch64 Android apps on Linux using qemu is not supported." >&2
80+
echo "Warning: Running Android apps on Linux using qemu is not supported." >&2
8181
'';
8282

8383
# Wrapper for qemu testing
@@ -88,7 +88,7 @@ let
8888

8989
# Choose the appropriate test wrapper
9090
testWrapper = lib.optional isLinuxCross
91-
(if hostPlatform.isAndroid && hostPlatform.isAarch64
91+
(if hostPlatform.isAndroid
9292
then "${qemuNotSupportedWarning}/bin/warning-wrapper"
9393
else "${qemuTestWrapper}/bin/test-wrapper");
9494

0 commit comments

Comments
 (0)