mirror of
https://github.com/libretro/libretro-super
synced 2025-02-11 18:41:05 +00:00
libretro-build.sh now runs anywhere
This commit is contained in:
parent
0ada2ddbd1
commit
189fed77e2
@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
# vi: ts=3 sw=3 et ft=bash
|
||||
|
||||
die() {
|
||||
echo $1
|
||||
@ -59,7 +59,7 @@ reset_compiler_targets() {
|
||||
}
|
||||
|
||||
build_libretro_pcsx_rearmed_interpreter() {
|
||||
cd "${BASE_DIR}"
|
||||
cd "${WORKDIR}"
|
||||
if [ -d 'libretro-pcsx_rearmed' ]; then
|
||||
echo '=== Building PCSX ReARMed Interpreter ==='
|
||||
cd libretro-pcsx_rearmed
|
||||
@ -81,7 +81,7 @@ build_libretro_pcsx_rearmed_interpreter() {
|
||||
# $4 is Makefile name
|
||||
# $5 is preferred platform
|
||||
build_libretro_generic_makefile_subcore() {
|
||||
cd $BASE_DIR
|
||||
cd ${WORKDIR}
|
||||
if [ -d "libretro-${1}" ]; then
|
||||
echo "=== Building ${2} ==="
|
||||
cd libretro-${1}/
|
||||
@ -124,7 +124,7 @@ copy_core_to_dist() {
|
||||
# $3 is Makefile name
|
||||
# $4 is preferred platform
|
||||
build_libretro_generic_makefile() {
|
||||
cd "${BASE_DIR}"
|
||||
cd "${WORKDIR}"
|
||||
if [ -d "libretro-${1}" ]; then
|
||||
echo "=== Building ${1} ==="
|
||||
cd libretro-${1}
|
||||
@ -364,7 +364,7 @@ build_libretro_ppsspp() {
|
||||
|
||||
|
||||
build_libretro_mame() {
|
||||
cd "${BASE_DIR}"
|
||||
cd "${WORKDIR}"
|
||||
if [ -d 'libretro-mame' ]; then
|
||||
echo ''
|
||||
echo '=== Building MAME ==='
|
||||
@ -397,7 +397,7 @@ build_libretro_mame() {
|
||||
}
|
||||
|
||||
build_libretro_mess() {
|
||||
cd "${BASE_DIR}"
|
||||
cd "${WORKDIR}"
|
||||
if [ -d 'libretro-mame' ]; then
|
||||
echo ''
|
||||
echo '=== Building MESS ==='
|
||||
@ -424,7 +424,7 @@ build_libretro_mess() {
|
||||
}
|
||||
|
||||
rebuild_libretro_mess() {
|
||||
cd "${BASE_DIR}"
|
||||
cd "${WORKDIR}"
|
||||
if [ -d 'libretro-mame' ]; then
|
||||
echo ''
|
||||
echo '=== Building MESS ==='
|
||||
@ -451,7 +451,7 @@ rebuild_libretro_mess() {
|
||||
}
|
||||
|
||||
build_libretro_ume() {
|
||||
cd "${BASE_DIR}"
|
||||
cd "${WORKDIR}"
|
||||
if [ -d 'libretro-mame' ]; then
|
||||
echo ''
|
||||
echo '=== Building UME ==='
|
||||
@ -478,7 +478,7 @@ build_libretro_ume() {
|
||||
}
|
||||
|
||||
rebuild_libretro_ume() {
|
||||
cd "${BASE_DIR}"
|
||||
cd "${WORKDIR}"
|
||||
if [ -d 'libretro-mame' ]; then
|
||||
echo ''
|
||||
echo '=== Building MESS ==='
|
||||
@ -509,7 +509,7 @@ rebuild_libretro_ume() {
|
||||
# $3 is profile name
|
||||
# $4 is compiler
|
||||
build_libretro_bsnes_modern() {
|
||||
cd "${BASE_DIR}"
|
||||
cd "${WORKDIR}"
|
||||
if [ -d "libretro-${1}" ]; then
|
||||
echo "=== Building ${1} ${3} ==="
|
||||
cd libretro-${1}
|
||||
@ -540,7 +540,7 @@ build_libretro_bsnes_mercury() {
|
||||
|
||||
build_libretro_bsnes_cplusplus98() {
|
||||
CORENAME="bsnes_cplusplus98"
|
||||
cd "${BASE_DIR}"
|
||||
cd "${WORKDIR}"
|
||||
if [ -d "libretro-${CORENAME}" ]; then
|
||||
echo "=== Building ${CORENAME} ==="
|
||||
cd libretro-${CORENAME}
|
||||
@ -557,7 +557,7 @@ build_libretro_bsnes_cplusplus98() {
|
||||
}
|
||||
|
||||
build_libretro_bnes() {
|
||||
cd "${BASE_DIR}"
|
||||
cd "${WORKDIR}"
|
||||
if [ -d 'libretro-bnes' ]; then
|
||||
echo '=== Building bNES ==='
|
||||
cd libretro-bnes
|
||||
@ -576,7 +576,7 @@ build_libretro_bnes() {
|
||||
|
||||
build_libretro_mupen64() {
|
||||
check_opengl
|
||||
cd "${BASE_DIR}"
|
||||
cd "${WORKDIR}"
|
||||
if [ -d 'libretro-mupen64plus' ]; then
|
||||
cd libretro-mupen64plus
|
||||
|
||||
|
@ -1,31 +1,31 @@
|
||||
#!/bin/bash
|
||||
|
||||
. ./libretro-config.sh
|
||||
#! /bin/bash
|
||||
# vi: sw=3 ts=3 et
|
||||
|
||||
# BSDs don't have readlink -f
|
||||
read_link()
|
||||
{
|
||||
TARGET_FILE="$1"
|
||||
cd $(dirname "$TARGET_FILE")
|
||||
TARGET_FILE=$(basename "$TARGET_FILE")
|
||||
TARGET_FILE="${1}"
|
||||
cd "`dirname "${TARGET_FILE}"`"
|
||||
TARGET_FILE="`basename "${TARGET_FILE}"`"
|
||||
|
||||
while [ -L "$TARGET_FILE" ]
|
||||
do
|
||||
TARGET_FILE=$(readlink "$TARGET_FILE")
|
||||
cd $(dirname "$TARGET_FILE")
|
||||
TARGET_FILE=$(basename "$TARGET_FILE")
|
||||
while [ -L "${TARGET_FILE}" ]; do
|
||||
TARGET_FILE="`readlink "${TARGET_FILE}"`"
|
||||
cd "`dirname "${TARGET_FILE}"`"
|
||||
TARGET_FILE="`basename "${TARGET_FILE}"`"
|
||||
done
|
||||
|
||||
PHYS_DIR=$(pwd -P)
|
||||
RESULT="$PHYS_DIR/$TARGET_FILE"
|
||||
echo $RESULT
|
||||
PHYS_DIR="`pwd -P`"
|
||||
RESULT="${PHYS_DIR}/${TARGET_FILE}"
|
||||
echo ${RESULT}
|
||||
}
|
||||
SCRIPT="`read_link "$0"`"
|
||||
BASE_DIR="`dirname "${SCRIPT}"`"
|
||||
WORKDIR="`pwd`"
|
||||
|
||||
. ${BASE_DIR}/libretro-config.sh
|
||||
|
||||
SCRIPT=$(read_link "$0")
|
||||
echo "Script: $SCRIPT"
|
||||
BASE_DIR=$(dirname "$SCRIPT")
|
||||
if [ -z "$RARCH_DIST_DIR" ]; then
|
||||
RARCH_DIR="$BASE_DIR/dist"
|
||||
RARCH_DIR="${WORKDIR}/dist"
|
||||
RARCH_DIST_DIR="$RARCH_DIR/$DIST_DIR"
|
||||
fi
|
||||
|
||||
@ -87,7 +87,7 @@ echo "CC = $CC"
|
||||
echo "CXX = $CXX"
|
||||
echo "STRIP = $STRIP"
|
||||
|
||||
. ./libretro-build-common.sh
|
||||
. ${BASE_DIR}/libretro-build-common.sh
|
||||
|
||||
mkdir -p "$RARCH_DIST_DIR"
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user