nixpkgs/pkgs/os-specific/linux/dietlibc/builder.sh
Eelco Dolstra d0a18cf8fa * Also symlink the linux directory in kernel-headers.
svn path=/nixpkgs/trunk/; revision=6940
2006-11-03 13:32:58 +00:00

33 lines
915 B
Bash

source $stdenv/setup
makeFlags="prefix=$out"
installFlags="prefix=$out"
postInstall=postInstall
postInstall() {
(cd $out && ln -s lib-* lib)
(cd $out/lib && ln -s start.o crt1.o)
# Fake crti.o and crtn.o.
touch empty.c
gcc -c empty.c -o $out/lib/crti.o
gcc -c empty.c -o $out/lib/crtn.o
# Copy <sys/user.h> from Glibc; binutils wants it.
cp $glibc/include/sys/user.h $out/include/sys/
# Remove <dlfcn.h>, it makes some packages think we can load
# dynamic libraries.
rm $out/include/dlfcn.h
# Dietlibc has a asm include directory, whose presence makes the
# asm directory of kernel-headers unreachable. So make symlinks
# from the dietlibc asm to the kernel-headers asm.
ln -s $kernelHeaders/include/asm/* $out/include/asm/ || true
# Idem for include/linux.
ln -s $kernelHeaders/include/linux/* $out/include/linux/ || true
}
genericBuild