Compare commits
No commits in common. "8dbb686606ac52a6ad93d8a0a02866adf3c97f85" and "ef7a335bcccc7cd1b842ddc415e0c67030b47c0c" have entirely different histories.
8dbb686606
...
ef7a335bcc
11 changed files with 8 additions and 24 deletions
|
@ -4,8 +4,3 @@ cd busybox-1.33.1
|
||||||
make defconfig
|
make defconfig
|
||||||
LDFLAGS="--static" make
|
LDFLAGS="--static" make
|
||||||
make install DESTDIR="$1"
|
make install DESTDIR="$1"
|
||||||
cd "_install"
|
|
||||||
install linuxrc "$1"/linuxrc
|
|
||||||
rsync -a ./bin/ "$1"/bin/
|
|
||||||
rsync -a ./sbin/ "$1"/sbin/
|
|
||||||
rsync -a ./usr "$1"/usr/
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
#/bin/busybox --install
|
/bin/busybox --install
|
|
@ -3,6 +3,6 @@ tar -xf clang+llvm-12.0.0-x86_64-linux-gnu-ubuntu-20.04.tar.xz
|
||||||
cd clang+llvm-12.0.0-x86_64-linux-gnu-ubuntu-20.04
|
cd clang+llvm-12.0.0-x86_64-linux-gnu-ubuntu-20.04
|
||||||
cd OBJ_ROOT
|
cd OBJ_ROOT
|
||||||
cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX="$1"/usr/bin
|
cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX="$1"/usr/bin
|
||||||
make
|
make -j`nproc`
|
||||||
make install DESTDIR="$1"
|
make install DESTDIR="$1"
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
pkg_config_deploy=true
|
pkg_config_deploy=true
|
||||||
pkg_config_ver="12.0.0"
|
pkg_config_ver="12.0.0"
|
||||||
pkg_config_name="clang"
|
pkg_config_name="clang"
|
||||||
pkg_config_makedepends="cmake"
|
pkg_config_makedepends="cmake ninja"
|
||||||
pkg_config_depends=""
|
pkg_config_depends=""
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
wget https://ftp.gnu.org/gnu/make/make-4.3.tar.gz
|
wget https://ftp.gnu.org/gnu/make/make-4.3.tar.gz
|
||||||
tar -xf make-4.3.tar.gz
|
untar -xf make-4.3.tar.gz
|
||||||
cd make-4.3
|
cd make-4.3
|
||||||
export CFLAGS="$CFLAGS -static"
|
export CFLAGS="$CFLAGS -static"
|
||||||
./configure --prefix=/usr
|
./configure --prefix=/usr
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
pkg_config_deploy="true"
|
pkg_config_deploy="true"
|
||||||
pkg_config_ver="4.3"
|
pkg_config_ver="0.1"
|
||||||
pkg_config_name="make"
|
pkg_config_name="make"
|
||||||
pkg_config_makedepends=""
|
pkg_config_makedepends=""
|
||||||
pkg_config_depends=""
|
pkg_config_depends=""
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
wget https://ftp.gnu.org/gnu/tar/tar-1.34.tar.xz
|
|
||||||
tar -xf tar-1.34
|
|
||||||
cd tar-1.34
|
|
||||||
./configure DEFAULT_RMT_DIR=/etc
|
|
||||||
make
|
|
||||||
make install DESTDIR="$1"
|
|
|
@ -1,5 +0,0 @@
|
||||||
pkg_config_deploy=true
|
|
||||||
pkg_config_ver="1.31"
|
|
||||||
pkg_config_name="tar"
|
|
||||||
pkg_config_makedepends=""
|
|
||||||
pkg_config_depends=""
|
|
|
@ -2,6 +2,6 @@ wget https://zlib.net/zlib-1.2.11.tar.gz
|
||||||
tar -xf zlib-1.2.11.tar.gz
|
tar -xf zlib-1.2.11.tar.gz
|
||||||
cd zlib-1.2.11
|
cd zlib-1.2.11
|
||||||
export CFLAGS="$CFLAGS -fPIC"
|
export CFLAGS="$CFLAGS -fPIC"
|
||||||
./configure --prefix="$1" --shared
|
./configure --prefix="$1" --lib-dir="/usr/lib" --shared
|
||||||
make
|
make
|
||||||
make install DESTDIR="$1"
|
make install DESTDIR="$1"
|
||||||
|
|
Loading…
Reference in a new issue