mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-16 00:05:24 +01:00
musl 1.2.2
This commit is contained in:
parent
fd76a5b09d
commit
fbaa01d84c
6 changed files with 46 additions and 0 deletions
14
sysa/musl-1.2.2/checksums
Normal file
14
sysa/musl-1.2.2/checksums
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
40e7962d82241e166dba1b12a7c4c0658ec8ade4e7b93e20a57485811a92f366 /after/lib/musl/Scrt1.o
|
||||
13ae7b4895a3ce59ab6b8219e03b5e65ca3d9400b673325c1df86d75bb1b9ff9 /after/lib/musl/crt1.o
|
||||
73f64b61e6e9ae83726ab4cc909a7b549b06b6df2b087aedddbcd39cb7146f69 /after/lib/musl/crti.o
|
||||
f5e325819d86fb381574692b8f9ea24f88f44f185a75adfe461705ecf2619c6e /after/lib/musl/crtn.o
|
||||
15b76dac0837370a1d1dea59e4570d15c1a5ab522810b758e3f32518975c9be3 /after/lib/musl/libc.a
|
||||
f0a17a43c74d2fe5474fa2fd29c8f14799e777d7d75a2cc4d11c20a6e7b161c5 /after/lib/musl/libcrypt.a
|
||||
f0a17a43c74d2fe5474fa2fd29c8f14799e777d7d75a2cc4d11c20a6e7b161c5 /after/lib/musl/libdl.a
|
||||
f0a17a43c74d2fe5474fa2fd29c8f14799e777d7d75a2cc4d11c20a6e7b161c5 /after/lib/musl/libm.a
|
||||
f0a17a43c74d2fe5474fa2fd29c8f14799e777d7d75a2cc4d11c20a6e7b161c5 /after/lib/musl/libpthread.a
|
||||
f0a17a43c74d2fe5474fa2fd29c8f14799e777d7d75a2cc4d11c20a6e7b161c5 /after/lib/musl/libresolv.a
|
||||
f0a17a43c74d2fe5474fa2fd29c8f14799e777d7d75a2cc4d11c20a6e7b161c5 /after/lib/musl/librt.a
|
||||
f0a17a43c74d2fe5474fa2fd29c8f14799e777d7d75a2cc4d11c20a6e7b161c5 /after/lib/musl/libutil.a
|
||||
f0a17a43c74d2fe5474fa2fd29c8f14799e777d7d75a2cc4d11c20a6e7b161c5 /after/lib/musl/libxnet.a
|
||||
ee385035a4d9b3f4f9a1c73148821ddf26a1b3c2e607aa948c70d8612559cf7d /after/lib/musl/rcrt1.o
|
||||
19
sysa/musl-1.2.2/musl-1.2.2.sh
Executable file
19
sysa/musl-1.2.2/musl-1.2.2.sh
Executable file
|
|
@ -0,0 +1,19 @@
|
|||
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
src_configure() {
|
||||
CC=gcc ./configure \
|
||||
--host=i386 \
|
||||
--disable-shared \
|
||||
--prefix=/after \
|
||||
--libdir=/after/lib/musl \
|
||||
--includedir=/after/include/
|
||||
|
||||
# configure script creates this file
|
||||
test -f /dev/null && rm /dev/null && mknod -m 666 /dev/null c 1 3
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
make CROSS_COMPILE=
|
||||
}
|
||||
|
|
@ -14,6 +14,10 @@ build automake-1.9.6 stage2.sh
|
|||
|
||||
build gcc-4.0.4 stage1.sh
|
||||
|
||||
build musl-1.2.2
|
||||
|
||||
build musl-1.2.2
|
||||
|
||||
echo "Bootstrapping completed."
|
||||
|
||||
exec env - PATH=/after/bin PS1="\w # " bash -i
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue