mirror of
https://github.com/libretro/libretro-super
synced 2024-12-01 04:03:00 +00:00
WIP: add mingw64 target
This commit is contained in:
parent
005b4abed4
commit
4e053b4915
@ -189,6 +189,7 @@ build_libretro_generic_makefile() {
|
||||
|
||||
if [ "${NAME}" == "mame078" ];
|
||||
then
|
||||
OLDJ=$JOBS
|
||||
JOBS=1
|
||||
fi
|
||||
|
||||
@ -225,6 +226,8 @@ build_libretro_generic_makefile() {
|
||||
echo $jobid $1 build failure!
|
||||
fi
|
||||
|
||||
JOBS=$OLDJ
|
||||
|
||||
}
|
||||
|
||||
build_libretro_generic_makefile() {
|
||||
@ -243,6 +246,7 @@ build_libretro_generic_makefile() {
|
||||
if [ "${NAME}" == "mame078" ];
|
||||
then
|
||||
JOBS=1
|
||||
OLDJ=$JOBS
|
||||
fi
|
||||
|
||||
|
||||
@ -277,6 +281,8 @@ build_libretro_generic_makefile() {
|
||||
echo $jobid $1 build failure!
|
||||
fi
|
||||
|
||||
JOBS=$OLDJ
|
||||
|
||||
}
|
||||
|
||||
build_libretro_generic_theos() {
|
||||
@ -1266,7 +1272,7 @@ then
|
||||
|
||||
fi
|
||||
|
||||
echo $ARCH
|
||||
echo $PLATFORM
|
||||
if [ "${PLATFORM}" == "MINGW64" ] && [ "${RA}" == "YES" ];
|
||||
then
|
||||
|
||||
@ -1380,9 +1386,18 @@ then
|
||||
echo "Building"
|
||||
echo ============================================
|
||||
|
||||
echo "cleaning up..."
|
||||
echo "cleanup command: $MAKE clean"
|
||||
$MAKE clean
|
||||
./configure
|
||||
$MAKE
|
||||
|
||||
echo "cconfiguring..."
|
||||
echo "configure command: $CONFIGURE"
|
||||
|
||||
${CONFIGURE}
|
||||
|
||||
echo "building..."
|
||||
echo "build command: $MAKE -j${JOBS}"
|
||||
$MAKE -j${JOBS}
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user