We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
curl.exe
1 parent cc543ad commit c9c6e42Copy full SHA for c9c6e42
_build.sh
@@ -691,12 +691,12 @@ build_single_target() {
691
fi
692
693
elif [ "${_HOST}" = 'mac' ]; then
694
- # Run x64 targets on Intel and ARM (requires Wine 6.0.1):
695
- if [ "${_CPU}" = 'x64' ]; then
696
- if command -v wine64 >/dev/null 2>&1; then
697
- _RUN_BIN='wine64'
698
- elif command -v wine >/dev/null 2>&1; then
+ # Run x64 and x86 targets on Intel and ARM (requires Wine 8.x):
+ if [[ "${_CPU}" = 'x64' || "${_CPU}" = 'x86' ]]; then
+ if command -v wine >/dev/null 2>&1; then
699
_RUN_BIN='wine'
+ elif command -v wine64 >/dev/null 2>&1; then
+ _RUN_BIN='wine64'
700
701
702
0 commit comments