about summary refs log tree commit diff
path: root/pkgs/development/libraries/glibc/builder.sh
blob: 29bcc7dc8e79e76f3538fb1b0c637a46cbe721c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#! /bin/sh

# glibc cannot have itself in its rpath.
export NIX_NO_SELF_RPATH=1

. $stdenv/setup


postUnpack() {
    cd $sourceRoot
    unpackFile $linuxthreadsSrc
    cd ..
}

postUnpack=postUnpack


preConfigure() {
    mkdir ../build
    cd ../build
    configureScript=../$sourceRoot/configure
    configureFlags="--enable-add-ons --disable-profile"
}

preConfigure=preConfigure


postInstall() {
    make localedata/install-locales
    rm $out/etc/ld.so.cache
    (cd $out/include && ln -s $kernelHeaders/include/* .) || exit 1
}

postInstall=postInstall


genericBuild