RetroPie-Setup/scriptmodules/emulators/atari800/01_rpi_fixes.diff
Jools Wills 059590bf6a atari800 - switch to using github repo and update to v4.1.0
* added automake dependency
 * update patch - we only change the compiler name to gcc now
 * params() should be local
2019-12-19 01:22:27 +00:00

13 lines
552 B
Diff

diff --git a/configure.ac b/configure.ac
index adb899f..bc9d939 100644
--- a/configure.ac
+++ b/configure.ac
@@ -148,7 +148,7 @@ if [[ "$a8_target" = "ps2" ]]; then
fi
if [[ "$a8_target" = "rpi" ]]; then
[[ -z "$RPI_SDK" ]] && RPI_SDK="/opt/vc"
- CC="arm-linux-gnueabihf-gcc"
+ CC="gcc"
CFLAGS="$CFLAGS -I${RPI_SDK}/include -I${RPI_SDK}/include/SDL -I${RPI_SDK}/include/interface/vmcs_host/linux -I${RPI_SDK}/include/interface/vcos/pthreads"
LDFLAGS="$LDFLAGS -Wl,--unresolved-symbols=ignore-in-shared-libs -L${RPI_SDK}/lib"
fi