summaryrefslogtreecommitdiff
path: root/stage2-eglibc.morph
blob: 85b44853360780014a42a1b6b821dd6155f8d7a3 (plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: stage2-eglibc
kind: chunk

configure-commands:
    - mkdir o

    # Necessary for ARM port
    - cd libc && ln -s ../ports ports

    # Configure flag notes:
    #   1. Avoid installing to PREFIX/lib64 on x86_64.
    #   2. Location of linux-api-headers.
    #   3. Normal flags. See eglibc.morph.
    #   4. Force configuration values of certain things that can't be detected
    #      in a cross-compile.
    - |
      export CFLAGS="-O2 $CFLAGS"; export CXX=false; \
      cd o && ../libc/configure \
        $(../morph-arch-config) \
        --build=$(../libc/scripts/config.guess) --host=$TARGET_STAGE1 \
        --prefix="$PREFIX" \
        `# [1]` --libdir="$PREFIX/lib" \
        `# [2]` --with-headers="$(pwd)/../../$PREFIX/include" \
        `# [3]` --disable-profile  --enable-kernel=2.6.25 \
                --enable-add-ons=nptl,ports --without-cvs --without-selinux \
        `# [4]` libc_cv_c_cleanup=yes libc_cv_ctors_header=yes \
                libc_cv_forced_unwind=yes libc_cv_ssp=no

build-commands:
    - cd o && make localtime=UTC

install-commands:
    - cd o && make install_root="$DESTDIR" localtime=UTC install
    - install -m 755 stage2-eglibc-fix-specs $DESTDIR$PREFIX/bin

    # Install a symlink for the program interpreter (ld.so) so that binaries
    # built in stage 3 before the stage 3 eglibc is built can use it.
    # FIXME: get a better way of finding the name of the loader. The lib64
    # path is hardcoded into eglibc in the file
    # sysdeps/unix/sysv/linux/configure.
    - install -d $DESTDIR/lib
    - |
      cpu=$(echo $TARGET | cut -d '-' -f 1)
      if [ "$cpu" == "x86_64" ]; then
        install -d "$DESTDIR/lib64"
        ln -s "$PREFIX/lib/ld-linux-x86-64.so.2" \
              "$DESTDIR/lib64/ld-linux-x86-64.so.2"
      else
        loader=$(basename $(ls "$DESTDIR$PREFIX"/lib/ld-linux*))
        ln -s "$PREFIX/lib/$loader" "$DESTDIR/lib/$loader"
      fi