721c919c7b
Changes: - kernel 6.0.2 - Broken init scripts - Switch to bun for better peroformance an easier ffi - Removed grup - Efi support without graphics (at least graphics werent tested) - Suppression de toutes les dépendance non libc - new splash - broken audio - typescript support - ls rewritten to be more reliable
21 lines
673 B
Bash
Executable File
21 lines
673 B
Bash
Executable File
|
|
if [ "$EUID" = 0 ]
|
|
then echo "Please don't run this as root"
|
|
exit
|
|
fi
|
|
|
|
git clone https://sourceware.org/git/glibc.git src --depth=1 --single-branch --branch release/2.36/master
|
|
cd src
|
|
git restore .
|
|
git pull
|
|
cd -
|
|
|
|
mkdir src/build -p
|
|
cd src/build
|
|
pwd
|
|
../configure --sysconfdir=/etc -prefix=/usr --with-headers=/usr/include --enable-add-ons --enable-bind-now --enable-cet --enable-lock-elision --enable-multi-arch --enable-stack-protector=strong --enable-stackguard-randomization --enable-static-pie --enable-systemtap --disable-profile --disable-werror || exit 1
|
|
make -j$(nproc) || exit 1
|
|
DESTDIR=$(pwd)/../../../libfs
|
|
sudo make install DESTDIR=$(realpath $DESTDIR)
|
|
cd -
|