Overview
| Comment: | Added start of setting dynamic linker |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | packages |
| Files: | files | file ages | folders |
| SHA1: |
f2ef882677a442d5c607b673d7f5c83b |
| User & Date: | rkeene on 2014-09-18 05:31:00 |
| Other Links: | branch diff | manifest | tags |
Context
|
2014-11-03
| ||
| 23:19 | Updated packages branch to be a completely isolated branch check-in: 6136db979d user: rkeene tags: packages | |
|
2014-09-18
| ||
| 05:31 | Added start of setting dynamic linker check-in: f2ef882677 user: rkeene tags: packages | |
| 04:44 | Removed extraneous set -x check-in: d4ba91a7e9 user: rkeene tags: packages | |
Changes
Modified packages/build from [e94c49a608] to [9250a4fcfd].
| ︙ | ︙ | |||
34 35 36 37 38 39 40 |
}
function postconfigure() {
:
}
function configure() {
| > | | < < < | < | | < < < < < < | | 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
}
function postconfigure() {
:
}
function configure() {
glibcvers=2.20
glibcdir="/opt/appfs/core.appfs.rkeene.org/glibc/platform/${glibcvers}"
dynlinker="$(ls "${glibcdir}"/lib/ld-linux*.so.* | tail -n 1)"
CFLAGS="-I${glibcdir}/include"
CPPFLAGS="-I${glibcdir}/include"
LDFLAGS="-Wl,--rpath,${glibcdir}/lib -Wl,--dynamic-linker,${dynlinker}"
export CFLAGS CPPFLAGS LDFLAGS
./configure --prefix="${prefix}" --sysconfdir=/etc --localstatedir=/var
}
function prebuild() {
:
}
|
| ︙ | ︙ |