Check-in [da04ec5b60]
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
2
3
4
5
6
7
8
9
#! /bin/sh

CROSS="arm-android9-linux-androideabi"
export CROSS

KC_KITSH_LDFLAGS_ADD='-fPIE'
export KC_KITSH_LDFLAGS_ADD

./build/make-kit-crosscompile "$@" LDFLAGS=-static-libgcc CFLAGS=-fPIC





|


|
1
2
3
4
5
6
7
8
9
#! /bin/sh

CROSS="arm-android9-linux-androideabi"
export CROSS

KC_KITSH_LDFLAGS_ADD='-fPIC -fPIE -pie'
export KC_KITSH_LDFLAGS_ADD

./build/make-kit-crosscompile "$@" LDFLAGS=-static-libgcc CFLAGS=-fPIE