diff options
author | Mike Pall <mike> | 2022-11-27 15:36:11 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2022-11-27 15:36:11 +0100 |
commit | 637721d00f0c9203542657a1acba6f4cc9b78aca (patch) | |
tree | 2b34a9a2ff1a82a76b0ddf6b9a4779160aaf600b /src/ps5build.bat | |
parent | 1d75cd4d7be638babe6d4e47bf73ea05fc65d81c (diff) | |
download | luajit-637721d00f0c9203542657a1acba6f4cc9b78aca.tar.gz luajit-637721d00f0c9203542657a1acba6f4cc9b78aca.tar.bz2 luajit-637721d00f0c9203542657a1acba6f4cc9b78aca.zip |
PS4/PS5: Fix build scripts.
Thanks to Mathias Westerdahl.
Diffstat (limited to 'src/ps5build.bat')
-rw-r--r-- | src/ps5build.bat | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ps5build.bat b/src/ps5build.bat index 0b1ebd5b..56818c2e 100644 --- a/src/ps5build.bat +++ b/src/ps5build.bat | |||
@@ -74,11 +74,11 @@ buildvm -m folddef -o lj_folddef.h lj_opt_fold.c | |||
74 | @if errorlevel 1 goto :BAD | 74 | @if errorlevel 1 goto :BAD |
75 | 75 | ||
76 | @rem ---- Cross compiler ---- | 76 | @rem ---- Cross compiler ---- |
77 | @set LJCOMPILE="%SCE_PROSPERO_SDK_DIR%\host_tools\bin\prospero-clang" -c -Wall -DLUAJIT_DISABLE_FFI %GC64% | 77 | @set LJCOMPILE="%SCE_PROSPERO_SDK_DIR%\host_tools\bin\prospero-clang" -c -Wall -DLUAJIT_DISABLE_FFI -DLUAJIT_USE_SYSMALLOC %GC64% |
78 | @set LJLIB="%SCE_PROSPERO_SDK_DIR%\host_tools\bin\prospero-llvm-ar" rcus | 78 | @set LJLIB="%SCE_PROSPERO_SDK_DIR%\host_tools\bin\prospero-llvm-ar" rcus |
79 | @set INCLUDE="" | 79 | @set INCLUDE="" |
80 | 80 | ||
81 | %SCE_PROSPERO_SDK_DIR%\host_tools\bin\prospero-llvm-as -o lj_vm.o lj_vm.s | 81 | "%SCE_PROSPERO_SDK_DIR%\host_tools\bin\prospero-clang" -c -o lj_vm.o lj_vm.s |
82 | 82 | ||
83 | @if "%1" neq "debug" goto :NODEBUG | 83 | @if "%1" neq "debug" goto :NODEBUG |
84 | @shift | 84 | @shift |