File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 75
75
# Also for GHC #15275
76
76
++ lib . optionals hostPlatform . isAarch64 [ "--gcc-option=-fPIC" ] ;
77
77
78
- # Wrapper to output a warning for aarch64 Android
78
+ # Wrapper to output a warning for Android
79
79
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
81
81
'' ;
82
82
83
83
# Wrapper for qemu testing
88
88
89
89
# Choose the appropriate test wrapper
90
90
testWrapper = lib . optional isLinuxCross
91
- ( if hostPlatform . isAndroid && hostPlatform . isAarch64
91
+ ( if hostPlatform . isAndroid
92
92
then "${ qemuNotSupportedWarning } /bin/warning-wrapper"
93
93
else "${ qemuTestWrapper } /bin/test-wrapper" ) ;
94
94
You can’t perform that action at this time.
0 commit comments