Обновление README.md, исходников, пакетки

This commit is contained in:
2026-03-27 13:13:52 +03:00
parent 30540602bd
commit 833f62c739
240 changed files with 2747 additions and 855 deletions

View File

@ -1,6 +1,6 @@
gcc 15.1.0
gcc 15.2.0
=
https://ftp.gnu.org/gnu/gcc/gcc-15.1.0/gcc-15.1.0.tar.xz
https://ftp.gnu.org/gnu/gcc/gcc-15.2.0/gcc-15.2.0.tar.xz
``` sh *** patch ***
@ -8,13 +8,15 @@ rg -l "/lib64/ld-linux-x86-64.so.2" ./ | xargs sed -i 's|/lib64/ld-linux-x86-64.
```
``` sh *** build ***
mkdir build; cd build &&
mkdir -p build
cd build
../configure \
--prefix=/pkg/gnu/gcc \
--disable-multilib \
--enable-languages=c,c++ \
--disable-werror &&
make -j$(nproc) && make install &&
make -j$(nproc)
make install
ln /pkg/gnu/gcc/bin/gcc /pkg/gnu/gcc/bin/cc
```