This commit is contained in:
m00d 2025-10-01 08:05:17 +02:00
parent 93fca09be1
commit 3f74a55897
15 changed files with 980 additions and 3 deletions

View file

@ -0,0 +1,174 @@
{
"artifacts": {
"disk": 5,
"install_prefix": null,
"sbu": 3.0
},
"build": [
{
"commands": [
"tar -xf ../mpfr-4.2.2.tar.xz",
"mv -v mpfr-4.2.2 mpfr",
"tar -xf ../gmp-6.3.0.tar.xz",
"mv -v gmp-6.3.0 gmp",
"tar -xf ../mpc-1.3.1.tar.gz",
"mv -v mpc-1.3.1 mpc"
],
"cwd": null,
"notes": null,
"phase": "setup",
"requires_root": false
},
{
"commands": [
"sed -e '/m64=/s/lib64/lib/' \\",
"-e '/m32=/s/m32=.*/m32=..\\/lib32$(call if_multiarch,:i386-linux-gnu)/' \\",
"-i.orig gcc/config/i386/t-linux64"
],
"cwd": null,
"notes": null,
"phase": "build",
"requires_root": false
},
{
"commands": [
"sed '/STACK_REALIGN_DEFAULT/s/0/(!TARGET_64BIT \\&\\& TARGET_SSE)/' \\",
"-i gcc/config/i386/i386.h"
],
"cwd": null,
"notes": null,
"phase": "build",
"requires_root": false
},
{
"commands": [
"mkdir -v build",
"cd build"
],
"cwd": null,
"notes": null,
"phase": "setup",
"requires_root": false
},
{
"commands": [
"mlist=m64,m32",
"../configure \\",
"--target=$LFS_TGT \\",
"--prefix=$LFS/tools \\",
"--with-glibc-version=2.42 \\",
"--with-sysroot=$LFS \\",
"--with-newlib \\",
"--without-headers \\",
"--enable-default-pie \\",
"--enable-default-ssp \\",
"--enable-initfini-array \\",
"--disable-nls \\",
"--disable-shared \\",
"--enable-multilib --with-multilib-list=$mlist \\",
"--disable-decimal-float \\",
"--disable-threads \\",
"--disable-libatomic \\",
"--disable-libgomp \\",
"--disable-libquadmath \\",
"--disable-libssp \\",
"--disable-libvtv \\",
"--disable-libstdcxx \\",
"--enable-languages=c,c++"
],
"cwd": null,
"notes": null,
"phase": "configure",
"requires_root": false
},
{
"commands": [
"make"
],
"cwd": null,
"notes": null,
"phase": "build",
"requires_root": false
},
{
"commands": [
"make install"
],
"cwd": null,
"notes": null,
"phase": "install",
"requires_root": false
},
{
"commands": [
"cd ..",
"cat gcc/limitx.h gcc/glimits.h gcc/limity.h > \\",
"`dirname $($LFS_TGT-gcc -print-libgcc-file-name)`/include/limits.h"
],
"cwd": null,
"notes": null,
"phase": "build",
"requires_root": false
}
],
"dependencies": {
"build": [],
"runtime": []
},
"environment": {
"users": [],
"variables": []
},
"optimizations": {
"cflags": [
"-O3",
"-flto"
],
"enable_lto": true,
"enable_pgo": true,
"ldflags": [
"-flto"
],
"profdata": null
},
"package": {
"anchors": {
"section": "https://linuxfromscratch.org/~thomas/multilib-m32/chapter05/gcc-pass1.html#ch-tools-gcc-pass1"
},
"book": "mlfs",
"chapter": 5,
"id": "mlfs/gcc-pass-1",
"name": "GCC",
"section": "5.3",
"stage": "cross-toolchain",
"upstream": null,
"variant": "Pass 1",
"version": "15.2.0"
},
"provenance": {
"book_release": "lfs-ml-12.4-40-multilib",
"content_hash": "439fb0bf6a99414e9ddf1301e603948e073d5df2dcf897ac5581c399bd99f045",
"page_url": "https://linuxfromscratch.org/~thomas/multilib-m32/chapter05/gcc-pass1.html",
"retrieved_at": "2025-10-01T05:30:05.164831+00:00"
},
"schema_version": "v0.1.0",
"source": {
"archive": "mpfr-4.2.2.tar.xz",
"checksums": [
{
"alg": "md5",
"value": "7c32c39b8b6e3ae85f25156228156061"
}
],
"urls": [
{
"kind": "primary",
"url": "https://ftp.gnu.org/gnu/gcc/gcc-15.2.0/gcc-15.2.0.tar.xz"
}
]
},
"status": {
"issues": [],
"state": "draft"
}
}

View file

@ -0,0 +1,289 @@
{
"artifacts": {
"disk": 870,
"install_prefix": null,
"sbu": 1.0
},
"build": [
{
"commands": [
"ln -sfv ../lib/ld-linux-x86-64.so.2 $LFS/lib64",
"ln -sfv ../lib/ld-linux-x86-64.so.2 $LFS/lib64/ld-lsb-x86-64.so.3"
],
"cwd": null,
"notes": null,
"phase": "build",
"requires_root": false
},
{
"commands": [
"patch -Np1 -i ../glibc-2.42-fhs-1.patch"
],
"cwd": null,
"notes": null,
"phase": "build",
"requires_root": false
},
{
"commands": [
"mkdir -v build",
"cd build"
],
"cwd": null,
"notes": null,
"phase": "setup",
"requires_root": false
},
{
"commands": [
"echo \"rootsbindir=/usr/sbin\" > configparms"
],
"cwd": null,
"notes": null,
"phase": "build",
"requires_root": false
},
{
"commands": [
"../configure \\",
"--prefix=/usr \\",
"--host=$LFS_TGT \\",
"--build=$(../scripts/config.guess) \\",
"--disable-nscd \\",
"libc_cv_slibdir=/usr/lib \\",
"--enable-kernel=5.4"
],
"cwd": null,
"notes": null,
"phase": "configure",
"requires_root": false
},
{
"commands": [
"make"
],
"cwd": null,
"notes": null,
"phase": "build",
"requires_root": false
},
{
"commands": [
"make DESTDIR=$LFS install"
],
"cwd": null,
"notes": null,
"phase": "build",
"requires_root": false
},
{
"commands": [
"sed '/RTLDLIST=/s@/usr@@g' -i $LFS/usr/bin/ldd"
],
"cwd": null,
"notes": null,
"phase": "build",
"requires_root": false
},
{
"commands": [
"echo 'int main(){}' | $LFS_TGT-gcc -x c - -v -Wl,--verbose &> dummy.log",
"readelf -l a.out | grep ': /lib'"
],
"cwd": null,
"notes": null,
"phase": "build",
"requires_root": false
},
{
"commands": [
"grep -E -o \"$LFS/lib.*/S?crt[1in].*succeeded\" dummy.log"
],
"cwd": null,
"notes": null,
"phase": "build",
"requires_root": false
},
{
"commands": [
"grep -B3 \"^ $LFS/usr/include\" dummy.log"
],
"cwd": null,
"notes": null,
"phase": "build",
"requires_root": false
},
{
"commands": [
"grep 'SEARCH.*/usr/lib' dummy.log |sed 's|; |\\n|g'"
],
"cwd": null,
"notes": null,
"phase": "build",
"requires_root": false
},
{
"commands": [
"grep \"/lib.*/libc.so.6 \" dummy.log"
],
"cwd": null,
"notes": null,
"phase": "build",
"requires_root": false
},
{
"commands": [
"grep found dummy.log"
],
"cwd": null,
"notes": null,
"phase": "build",
"requires_root": false
},
{
"commands": [
"rm -v a.out dummy.log"
],
"cwd": null,
"notes": null,
"phase": "build",
"requires_root": false
},
{
"commands": [
"make clean",
"find .. -name \"*.a\" -delete"
],
"cwd": null,
"notes": null,
"phase": "build",
"requires_root": false
},
{
"commands": [
"CC=\"$LFS_TGT-gcc -m32\" \\",
"CXX=\"$LFS_TGT-g++ -m32\" \\",
"../configure \\",
"--prefix=/usr \\",
"--host=$LFS_TGT32 \\",
"--build=$(../scripts/config.guess) \\",
"--disable-nscd \\",
"--with-headers=$LFS/usr/include \\",
"--libdir=/usr/lib32 \\",
"--libexecdir=/usr/lib32 \\",
"libc_cv_slibdir=/usr/lib32 \\",
"--enable-kernel=5.4"
],
"cwd": null,
"notes": null,
"phase": "configure",
"requires_root": false
},
{
"commands": [
"make"
],
"cwd": null,
"notes": null,
"phase": "build",
"requires_root": false
},
{
"commands": [
"make DESTDIR=$PWD/DESTDIR install",
"cp -a DESTDIR/usr/lib32 $LFS/usr/",
"install -vm644 DESTDIR/usr/include/gnu/{lib-names,stubs}-32.h \\",
"$LFS/usr/include/gnu/",
"ln -svf ../lib32/ld-linux.so.2 $LFS/lib/ld-linux.so.2"
],
"cwd": null,
"notes": null,
"phase": "build",
"requires_root": false
},
{
"commands": [
"echo 'int main(){}' > dummy.c",
"$LFS_TGT-gcc -m32 dummy.c",
"readelf -l a.out | grep '/ld-linux'"
],
"cwd": null,
"notes": null,
"phase": "build",
"requires_root": false
},
{
"commands": [
"rm -v dummy.c a.out"
],
"cwd": null,
"notes": null,
"phase": "build",
"requires_root": false
}
],
"dependencies": {
"build": [],
"runtime": []
},
"environment": {
"users": [],
"variables": []
},
"optimizations": {
"cflags": [
"-O3",
"-flto"
],
"enable_lto": true,
"enable_pgo": true,
"ldflags": [
"-flto"
],
"profdata": null
},
"package": {
"anchors": {
"section": "https://linuxfromscratch.org/~thomas/multilib-m32/chapter05/glibc.html#ch-tools-glibc"
},
"book": "mlfs",
"chapter": 5,
"id": "mlfs/glibc",
"name": "Glibc",
"section": "5.5",
"stage": "cross-toolchain",
"upstream": null,
"variant": null,
"version": "2.42"
},
"provenance": {
"book_release": "lfs-ml-12.4-40-multilib",
"content_hash": "52b9b51a37f960c3d8694d06cfd1a8ef297a3a2e473e565f402765b24c4e2329",
"page_url": "https://linuxfromscratch.org/~thomas/multilib-m32/chapter05/glibc.html",
"retrieved_at": "2025-10-01T05:30:28.195848+00:00"
},
"schema_version": "v0.1.0",
"source": {
"archive": "glibc-2.42.tar.xz",
"checksums": [
{
"alg": "md5",
"value": "23c6f5a27932b435cae94e087cb8b1f5"
}
],
"urls": [
{
"kind": "primary",
"url": "https://ftp.gnu.org/gnu/glibc/glibc-2.42.tar.xz"
},
{
"kind": "primary",
"url": "https://www.linuxfromscratch.org/patches/lfs/development/glibc-2.42-fhs-1.patch"
}
]
},
"status": {
"issues": [],
"state": "draft"
}
}

View file

@ -0,0 +1,81 @@
{
"artifacts": {
"disk": 1,
"install_prefix": null,
"sbu": 0.0
},
"build": [
{
"commands": [
"make mrproper"
],
"cwd": null,
"notes": null,
"phase": "build",
"requires_root": false
},
{
"commands": [
"make headers",
"find usr/include -type f ! -name '*.h' -delete",
"cp -rv usr/include $LFS/usr"
],
"cwd": null,
"notes": null,
"phase": "build",
"requires_root": false
}
],
"dependencies": {
"build": [],
"runtime": []
},
"environment": {
"users": [],
"variables": []
},
"optimizations": {
"cflags": [
"-O3",
"-flto"
],
"enable_lto": true,
"enable_pgo": true,
"ldflags": [
"-flto"
],
"profdata": null
},
"package": {
"anchors": {
"section": "https://linuxfromscratch.org/~thomas/multilib-m32/chapter05/linux-headers.html#ch-tools-linux-headers"
},
"book": "mlfs",
"chapter": 5,
"id": "mlfs/linux",
"name": "Linux",
"section": "5.4",
"stage": "cross-toolchain",
"upstream": null,
"variant": null,
"version": "6.16.9 API Headers"
},
"provenance": {
"book_release": "lfs-ml-12.4-40-multilib",
"content_hash": "cd251fbfaaa5da1eb43185331f5beaa07cdd9d50c79f19be266435781195b66d",
"page_url": "https://linuxfromscratch.org/~thomas/multilib-m32/chapter05/linux-headers.html",
"retrieved_at": "2025-10-01T05:30:14.291785+00:00"
},
"schema_version": "v0.1.0",
"source": {
"archive": null,
"checksums": [],
"urls": []
},
"status": {
"issues": [
"No source URLs with archive extensions detected"
],
"state": "draft"
}
}