Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion compilers/gcc/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ OPTS+=" --build=$BUILD \
--mandir=/usr/share/man \
--enable-languages=$LANGUAGES \
--enable-gnu-unique-object \
--enable-ckecking=release \
--enable-checking=release \
--enable-target-optspace \
--enable-linker-build-id \
--enable-threads=posix \
Expand Down
4 changes: 2 additions & 2 deletions compilers/gcc/DEPENDS
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
depends libmpc
depends binutils
depends zstd
depends libmpc

optional_depends isl "--with-isl" "--without-isl" "for ISL library support"
optional_depends zstd "--with-zstd" "--without-zstd" "for ZSTD compressed debug sections" n
6 changes: 3 additions & 3 deletions compilers/gcc/DETAILS
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
MODULE=gcc
VERSION=14.2.0
VERSION=15.2.0
SOURCE=$MODULE-${VERSION}.tar.xz
SOURCE_URL[0]=$GNU_URL/gcc/$MODULE-${VERSION}/
SOURCE_URL[1]=ftp://gcc.gnu.org/pub/gcc/releases/gcc-${VERSION}/
SOURCE_URL[2]=http://www.online-mirror.org/gcc/$MODULE-${VERSION}/
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION
SOURCE_VFY=sha256:a7b39bc69cbf9e25826c5a60ab26477001f7c08d85cec04bc0e29cabed6f3cc9
SOURCE_VFY=sha256:438fd996826b0c82485a29da03a72d71d6e3541a83ec702df4271f6fe025d24e
WEB_SITE=http://gcc.gnu.org/
ENTERED=20020628
UPDATED=20240813
UPDATED=20250811
SHORT="GNU compiler collection"

cat << EOF
Expand Down
2 changes: 1 addition & 1 deletion compilers/gcc/POST_INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ if query "Do you want lunar to attempt to rebuild all affected modules?" ${ASK_F
do
lvu install "$mod" | grep '.*\.so$\|/bin/\|/sbin/\|/games/' | while read modfile
do
ldd "$modfile" 2>/dev/null | fgrep -q "libstdc++.so.6" &&
ldd "$modfile" 2>/dev/null | grep -F -q "libstdc++.so.6" &&
echo "$mod" &&
break
done
Expand Down