Differences From Artifact [84b7ccd5bb]:
- Executable file build — part of check-in [b5ddc3b45b] at 2014-11-04 00:46:06 on branch packages — Updated to use UTC timezone everywhere (user: rkeene, size: 5220) [annotate] [blame] [check-ins using]
To Artifact [d401f36a65]:
- Executable file build — part of check-in [c2cecc4043] at 2014-11-04 01:01:43 on branch packages — Updated to ensure glibc directory is available (user: rkeene, size: 5350) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 | 1 2 3 4 5 6 7 8 9 10 | + | #! /usr/bin/env bash # Set timezone to default TZ=UTC export TZ targetmode='install' if [ "$1" == '--cpio' ]; then targetmode='archive' |
| ︙ | |||
47 48 49 50 51 52 53 54 55 56 57 58 59 60 | 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | + + + + |
:
}
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)"
if [ ! -d "${glibcdir}" ]; then
die 'glibc directory is not available (appfs running/working?)'
fi
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
|
| ︙ |