Overview
Comment: | Improved PIE support for Android, hopefully |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | da04ec5b608b56680299eecb44bcfbe12aae231f |
User & Date: | rkeene on 2017-03-31 11:52:54 |
Other Links: | manifest | tags |
Context
2017-08-10
| ||
20:37 | Added 8.6.7 support to various places check-in: f069f572fc user: rkeene tags: trunk | |
2017-03-31
| ||
11:52 | Improved PIE support for Android, hopefully check-in: da04ec5b60 user: rkeene tags: trunk | |
2017-03-30
| ||
04:37 | Updated to build Android/ARM kits as PIE check-in: 911b4864a6 user: rkeene tags: trunk | |
Changes
Modified build/make-kit-android-arm from [3bfb169e94] to [5704c09207].
1 1 #! /bin/sh 2 2 3 3 CROSS="arm-android9-linux-androideabi" 4 4 export CROSS 5 5 6 -KC_KITSH_LDFLAGS_ADD='-fPIE' 6 +KC_KITSH_LDFLAGS_ADD='-fPIC -fPIE -pie' 7 7 export KC_KITSH_LDFLAGS_ADD 8 8 9 -./build/make-kit-crosscompile "$@" LDFLAGS=-static-libgcc CFLAGS=-fPIC 9 +./build/make-kit-crosscompile "$@" LDFLAGS=-static-libgcc CFLAGS=-fPIE