513d2cae3e
Also restructure meson.build and the ghactions workflow a bit, and enable -ffunction-sections and -fdata-sections. Note that starcatcher uploads have not been tested and most likely don't work.
29 lines
671 B
Bash
29 lines
671 B
Bash
set -euo pipefail
|
|
IFS=$'\t\n'
|
|
|
|
IFS=$'\t\n\r'
|
|
for i in $("$(env | grep '^ProgramFiles(x86)=' | cut -d = -f 2-)/Microsoft Visual Studio/Installer/vswhere.exe" \
|
|
-sort \
|
|
-prerelease \
|
|
-requiresAny \
|
|
-requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64 \
|
|
-requires Microsoft.VisualStudio.Workload.WDExpress \
|
|
-products \* \
|
|
-utf8 \
|
|
-property installationPath); do
|
|
if ! [ -z ${2-} ]; then
|
|
if ! echo $i | grep $2 >/dev/null; then
|
|
continue
|
|
fi
|
|
fi
|
|
vs_install_dir=$i
|
|
break
|
|
done
|
|
IFS=$'\t\n'
|
|
|
|
for i in $(MSYS_NO_PATHCONV=1 cmd /c "$vs_install_dir\\VC\\Auxiliary\\Build\\vcvarsall.bat" $1 \& env \& exit /b); do
|
|
set +e
|
|
export "$i" 2>/dev/null
|
|
set -e
|
|
done
|