[Scummvm-git-logs] scummvm master -> afad06b1800a8d70d164f4266196e49987076740
antoniou79
antoniou at cti.gr
Sat Oct 5 19:42:39 CEST 2019
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
afad06b180 CONFIGURE: Add "-march=armv7-a" to linker for arm-v7a target
Commit: afad06b1800a8d70d164f4266196e49987076740
https://github.com/scummvm/scummvm/commit/afad06b1800a8d70d164f4266196e49987076740
Author: Thanasis Antoniou (a.antoniou79 at gmail.com)
Date: 2019-10-05T20:42:27+03:00
Commit Message:
CONFIGURE: Add "-march=armv7-a" to linker for arm-v7a target
Based on https://developer.android.com/ndk/guides/standalone_toolchain
>From "ABI Compatibility" section:
Also, make sure to provide the following two flags to the linker: -march=armv7-a -Wl,--fix-cortex-a8
Changed paths:
configure
diff --git a/configure b/configure
index a2e9ea5..9cdf031 100755
--- a/configure
+++ b/configure
@@ -2580,6 +2580,7 @@ case $_host_os in
append_var CXXFLAGS "-march=armv7-a"
append_var CXXFLAGS "-mfloat-abi=softfp"
append_var CXXFLAGS "-mfpu=vfp"
+ append_var LDFLAGS "-march=armv7-a"
append_var LDFLAGS "-Wl,--fix-cortex-a8"
ABI="armeabi-v7a"
;;
More information about the Scummvm-git-logs
mailing list