mirror of
https://github.com/libretro/libretro-super
synced 2025-04-10 03:44:14 +00:00
Ensure DIST_DIR includes the CPU for OS X in libretro-config as well
This commit is contained in:
parent
713438be02
commit
8142fb5cb3
@ -75,7 +75,7 @@ case "$platform" in
|
|||||||
ARM=true
|
ARM=true
|
||||||
export FORMAT_COMPILER_TARGET=armv
|
export FORMAT_COMPILER_TARGET=armv
|
||||||
export RARCHCFLAGS="$RARCHCFLAGS -marm"
|
export RARCHCFLAGS="$RARCHCFLAGS -marm"
|
||||||
case "${ARCH}" in
|
case "$ARCH" in
|
||||||
armv5tel) ARMV5=true ;;
|
armv5tel) ARMV5=true ;;
|
||||||
armv6l) ARMV6=true ;;
|
armv6l) ARMV6=true ;;
|
||||||
armv7l) ARMV7=true ;;
|
armv7l) ARMV7=true ;;
|
||||||
@ -103,7 +103,14 @@ case "$platform" in
|
|||||||
platform=osx
|
platform=osx
|
||||||
FORMAT_EXT="dylib"
|
FORMAT_EXT="dylib"
|
||||||
FORMAT_COMPILER_TARGET="osx"
|
FORMAT_COMPILER_TARGET="osx"
|
||||||
DIST_DIR="osx"
|
case "$ARCH" in
|
||||||
|
x86_64|i386|ppc*)
|
||||||
|
DIST_DIR="osx-$ARCH"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
DIST_DIR="osx-unknown"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
;;
|
;;
|
||||||
win|*mingw32*|*MINGW32*|*MSYS_NT*)
|
win|*mingw32*|*MINGW32*|*MSYS_NT*)
|
||||||
platform=win
|
platform=win
|
||||||
|
Loading…
x
Reference in New Issue
Block a user