-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Namely: - update sdl2, curl, mbedtls, and amend the corresponding patches - attempt to use mingw32-make when make doesn't exist - introduce angry_patch to combat patch being unable to deal with line endings in 2024 - bump ghactions jobs to macos-13 and ubuntu-22.04 - make vs-env.sh only do its work if it hasn't already done so (because otherwise the double work breaks some """"build systems"""" like luajit's) - get bzip2 to stop using fdopen - specify ubuntu version in the prepare step - unlock meson version from 1.2.3 - enable wayland on linux by installing it in the ubuntu jobs
- Loading branch information
Showing
14 changed files
with
75 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,33 @@ | ||
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 ${VS_ENV_FILTER-} ]; then | ||
if ! echo $i | grep $VS_ENV_FILTER >/dev/null; then | ||
continue | ||
if [[ -z "${DevEnvDir-}" ]]; then | ||
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 ${VS_ENV_FILTER-} ]; then | ||
if ! echo $i | grep $VS_ENV_FILTER >/dev/null; then | ||
continue | ||
fi | ||
fi | ||
fi | ||
vs_install_dir=$i | ||
break | ||
done | ||
IFS=$'\t\n' | ||
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" $VS_ENV_PARAMS \& env \& exit /b); do | ||
set +e | ||
export "$i" 2>/dev/null | ||
echo $i | grep ERROR | ||
set -e | ||
done | ||
for i in $(MSYS_NO_PATHCONV=1 cmd /c "$vs_install_dir\\VC\\Auxiliary\\Build\\vcvarsall.bat" $VS_ENV_PARAMS \& env \& exit /b); do | ||
set +e | ||
export "$i" 2>/dev/null | ||
echo $i | grep ERROR | ||
set -e | ||
done | ||
fi | ||
|
||
cl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.