mirror of
https://github.com/RetroPie/RetroPie-Setup.git
synced 2025-04-02 10:51:41 -04:00
* added automake dependency * update patch - we only change the compiler name to gcc now * params() should be local
13 lines
552 B
Diff
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
|