Merge pull request #16430 from GABO1423/master

(Libretro) Buildbot Fix
This commit is contained in:
Henrik Rydgård 2022-11-24 19:10:39 +01:00 committed by GitHub
commit 21cc6b85e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -312,9 +312,9 @@ else ifeq ($(platform), emscripten)
PLATFORM_EXT = unix
# Windows MSVC all architectures
else ifneq (,$(findstring windows_msvc,$(platform)))
else ifneq (,$(findstring windows_msvc2019,$(platform)))
PlatformSuffix = $(subst windows_msvc_,,$(platform))
PlatformSuffix = $(subst windows_msvc2019_,,$(platform))
ifneq (,$(findstring desktop,$(PlatformSuffix)))
WinPartition = desktop
MSVCCompileFlags = -DWINAPI_FAMILY=WINAPI_FAMILY_DESKTOP_APP -D_UNICODE -DUNICODE -DWINVER=0x0600 -D_WIN32_WINNT=0x0600

View File

@ -14,7 +14,7 @@ Then use the following in msys:
cd libretro
make platform=windows_msvc_desktop_x64 -j32 && cp ppsspp_libretro.* /d/retroarch/cores
make platform=windows_msvc2019_desktop_x64 -j32 && cp ppsspp_libretro.* /d/retroarch/cores
Note that the latter part copies the DLL/PDB into wherever retroarch reads it from. Might need to adjust the path,
and adjust -j32 depending on your number of logical CPUs - might not need that many threads (or you might need more...).