diff options
author | D G Turner | 2014-12-09 10:51:00 +0000 |
---|---|---|
committer | D G Turner | 2014-12-09 10:51:00 +0000 |
commit | 68693f996dc9b66ecbdfda9c38e07765ba0a70df (patch) | |
tree | 0323e5ae7153a05f87a355d16a54188370e8726a | |
parent | 0a6904c4abc242125532fb797290820834cbb2cf (diff) | |
download | scummvm-rg350-68693f996dc9b66ecbdfda9c38e07765ba0a70df.tar.gz scummvm-rg350-68693f996dc9b66ecbdfda9c38e07765ba0a70df.tar.bz2 scummvm-rg350-68693f996dc9b66ecbdfda9c38e07765ba0a70df.zip |
CONFIGURE: Add likely fix for AmigaOS4 linker relocation build failure.
-rwxr-xr-x | configure | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -2763,6 +2763,9 @@ if test -n "$_host"; then _port_mk="backends/platform/openpandora/op-bundle.mk" ;; ppc-amigaos) + # PPC Linker requires this to fix relocation errors + CXXFLAGS="$CXXFLAGS -mlongcall" + # Only static builds link successfully on buildbot LDFLAGS=`echo $LDFLAGS | sed 's/-use-dynld//'` LDFLAGS="$LDFLAGS -static" |