Compare commits
No commits in common. "298d700fbce0557868126b16d706f43ff4d23cdb" and "afa0d66f27c8f55af753f253725941d45b6efa60" have entirely different histories.
298d700fbc
...
afa0d66f27
5 changed files with 14 additions and 16 deletions
|
@ -1,6 +0,0 @@
|
||||||
wget https://ftp.gnu.org/gnu/bash/bash-5.1.8.tar.gz
|
|
||||||
tar -xf bash-5.1.8.tar.gz
|
|
||||||
cd bash-5.1.8
|
|
||||||
./configure
|
|
||||||
make
|
|
||||||
make install
|
|
|
@ -1,5 +0,0 @@
|
||||||
pkg_config_deploy=true
|
|
||||||
pkg_config_ver="5.1.8"
|
|
||||||
pkg_config_name="bash"
|
|
||||||
pkg_config_makedepends=""
|
|
||||||
pkg_config_depends=""
|
|
7
clang/build
Executable file
7
clang/build
Executable file
|
@ -0,0 +1,7 @@
|
||||||
|
wget https://github.com/llvm/llvm-project/releases/download/llvmorg-12.0.1/clang-12.0.1.src.tar.xz
|
||||||
|
untar -xf clang-12.0.1.src.tar.xz
|
||||||
|
cd clang-12.0.1.src
|
||||||
|
cmake -S llvm -G "Unix Makefiles" -B build -DCMAKE_INSTALL_PREFIX="$1"/usr/bin
|
||||||
|
make
|
||||||
|
make install DESTDIR="$1"
|
||||||
|
|
5
clang/package
Executable file
5
clang/package
Executable file
|
@ -0,0 +1,5 @@
|
||||||
|
pkg_config_deploy=true
|
||||||
|
pkg_config_ver="12.0.0"
|
||||||
|
pkg_config_name="clang"
|
||||||
|
pkg_config_makedepends="cmake"
|
||||||
|
pkg_config_depends=""
|
|
@ -7,11 +7,8 @@ wget https://ftp.gnu.org/gnu/mpc/mpc-1.2.1.tar.gz
|
||||||
tar -xf gmp-6.2.1.tar.xz
|
tar -xf gmp-6.2.1.tar.xz
|
||||||
tar -xf mpfr-4.1.0.tar.xz
|
tar -xf mpfr-4.1.0.tar.xz
|
||||||
tar -xf mpc-1.2.1.tar.gz
|
tar -xf mpc-1.2.1.tar.gz
|
||||||
mv gmp-6.2.1 gmp
|
sed -i '/m64=/s/lib64/lib/' gcc/gcc/config/i386/t-linux64
|
||||||
mv mpfr-4.1.0 mpfr
|
sed -i 's/lib64/lib/' gcc/gcc/config/i386/linux64.h
|
||||||
mv mpc-1.2.1 mpc
|
|
||||||
sed -i '/m64=/s/lib64/lib/' ./config/i386/t-linux64
|
|
||||||
sed -i 's/lib64/lib/' ./config/i386/linux64.h
|
|
||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
../configure --prefix=/usr --enable-languages=c,c++,d,fortran,go,objc,obj-c++
|
../configure --prefix=/usr --enable-languages=c,c++,d,fortran,go,objc,obj-c++
|
||||||
|
|
Loading…
Reference in a new issue