1
2
3
4
5
6
7
8
9
..
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
#! /usr/bin/env bash
TZ=UTC
export TZ
targetmode='install'
if [ "$1" == '--cpio' ]; then
targetmode='archive'
................................................................................
:
}
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
|
|
1
2
3
4
5
6
7
8
9
10
..
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#! /usr/bin/env bash
# Set timezone to default
TZ=UTC
export TZ
targetmode='install'
if [ "$1" == '--cpio' ]; then
targetmode='archive'
................................................................................
:
}
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
|