mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-06-27 19:06:23 +02:00
Better Performance, Updated Compilation. Updated Settings UI, iOS 18.4db1 JIT, etc
This commit is contained in:
parent
bff023563b
commit
bffc5356a8
50 changed files with 6629 additions and 461 deletions
21
distribution/ios/xc-compile.sh
Executable file
21
distribution/ios/xc-compile.sh
Executable file
|
@ -0,0 +1,21 @@
|
|||
dotnet_output=$(./distribution/ios/get_dotnet.sh)
|
||||
exit_code=$?
|
||||
|
||||
if [ $exit_code -eq 0 ]; then
|
||||
dotnet="$dotnet_output"
|
||||
else
|
||||
echo "error: .NET not found, Please follow the compilation instructions on the gitea." >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
$dotnet publish -c Release -r ios-arm64 -p:ExtraDefineConstants=DISABLE_UPDATER src/Ryujinx.Headless.SDL2 --self-contained true
|
||||
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "warning: Compiling MeloNX failed! Running dotnet clean + restore then Retrying..."
|
||||
|
||||
$dotnet clean
|
||||
|
||||
$dotnet restore
|
||||
|
||||
$dotnet publish -c Release -r ios-arm64 -p:ExtraDefineConstants=DISABLE_UPDATER src/Ryujinx.Headless.SDL2 --self-contained true
|
||||
fi
|
Loading…
Add table
Add a link
Reference in a new issue