The provides=("${_pkgbase}=${pkgver}")
, provides=("${_pkgbase}-libs=${pkgver}" ...)
etc. don't make sense, gcc11-libs
actually depends on gcc-libs
via these symlinks: https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=gcc11#n212
Search Criteria
Package Details: gcc11-libs 11.5.0-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/gcc11.git (read-only, click to copy) |
---|---|
Package Base: | gcc11 |
Description: | Runtime libraries shipped by GCC (11.x.x) |
Upstream URL: | https://gcc.gnu.org |
Licenses: | GPL, custom, LGPL, FDL |
Submitter: | yan12125 |
Maintainer: | FabioLolix |
Last Packager: | FabioLolix |
Votes: | 5 |
Popularity: | 0.008533 |
First Submitted: | 2023-04-05 08:26 (UTC) |
Last Updated: | 2025-05-02 22:51 (UTC) |
Dependencies (8)
- glibc (glibc-gitAUR, glibc-linux4AUR, glibc-eacAUR)
- binutils (make)
- doxygen (doxygen-gitAUR) (make)
- gcc13 (make)
- libmpc (libmpc-gitAUR) (make)
- python (python37AUR, python311AUR, python310AUR) (make)
- dejagnu (dejagnu-gitAUR) (check)
- inetutils (inetutils-gitAUR) (check)
Sources (5)
lahwaacz commented on 2023-08-25 09:43 (UTC)
keilmillerjr commented on 2023-06-22 12:24 (UTC) (edited on 2023-06-23 13:32 (UTC) by keilmillerjr)
@C0rn3j I already have that key. Error about PGP signature still remains. Any ideas?
gpg --keyserver hkps://keyserver.ubuntu.com --recv-key 6C35B99309B5FA62
gpg: key 6C35B99309B5FA62: 2 duplicate signatures removed
gpg: key 6C35B99309B5FA62: "Jakub Jelinek <jakub@redhat.com>" not changed
gpg: Total number processed: 1
gpg: unchanged: 1
==> Verifying source file signatures with gpg...
gcc-11.4.0.tar.xz ... FAILED (unknown public key 6C35B99309B5FA62)
==> ERROR: One or more PGP signatures could not be verified!
EDIT: Rebuilding a package that depended on gcc11 resolved the issue. I am not sure why, because the error is about PGP signatures and not versioning, but it worked.
eduardolucioac commented on 2023-06-20 19:23 (UTC) (edited on 2023-06-20 19:25 (UTC) by eduardolucioac)
In case of problems in gcc11 update
If gcc11 has problems regarding the version of gcc11-libs. So try to install gcc11-libs first...
yay -S gcc11-libs
If the system says breaking dependency against gcc11 itself, then remove it without breaking any dependency ("-Rdd")...
yay -Rdd gcc11
... , install gcc11-libs...
yay -S gcc11-libs
... and install gcc11...
yay -S gcc11
Done!🤠
C0rn3j commented on 2023-06-19 09:21 (UTC)
To import the new key:
gpg --keyserver hkps://keyserver.ubuntu.com --recv-key 6C35B99309B5FA62
FabioLolix commented on 2023-05-16 07:26 (UTC)
@DarshK35 you need to add the PGP key, gcc is better build in chroot with devtools (don't know what is using manjaro nowdays)
@joshm gcc is quite long, especially if makepkg.conf isn't configured to use all cores
DarshK35 commented on 2023-05-16 06:02 (UTC) (edited on 2023-05-16 06:02 (UTC) by DarshK35)
I'm not able to build it using pamac on manjaro. I'm using command pamac build gcc11
Output received:
==> Validating source files with b2sums...
gcc-11.3.0.tar.xz ... Passed
gcc-11.3.0.tar.xz.sig ... Skipped
isl-0.24.tar.bz2 ... Passed
c89 ... Passed
c99 ... Passed
==> Verifying source file signatures with gpg...
gcc-11.3.0.tar.xz ... cat: write error: Broken pipe
FAILED
==> ERROR: One or more PGP signatures could not be verified!
Finished with result: exit-code
Main processes terminated with: code=exited/status=1
Service runtime: 40.301s
CPU time consumed: 5.122s
Error: Failed to build gcc11
Not sure what to do about the broken pipe error. Any help will be appreciated
joshm commented on 2023-05-15 13:20 (UTC)
I ran pacaur -S gcc11 gcc11-libs
an hour ago and it's still running. Is this normal?
v0vc commented on 2023-04-22 11:10 (UTC) (edited on 2023-04-22 11:12 (UTC) by v0vc)
haven't been able to update this for a few days, any ideas what the issue might be?,
ar: ./setproctitle/home/user.o: No such file or directory
make[3]: *** [Makefile:253: libiberty.a] Error 1
make[3]: Leaving directory '/home/user/.cache/yay/gcc11/src/gcc-build/libiberty'
make[2]: *** [Makefile:13141: all-stage1-libiberty] Error 2
make[2]: Leaving directory '/home/user/.cache/yay/gcc11/src/gcc-build'
make[1]: *** [Makefile:25184: stage1-bubble] Error 2
make[1]: Leaving directory '/home/user/.cache/yay/gcc11/src/gcc-build'
make: *** [Makefile:1015: all] Error 2
==> ERROR: A failure occurred in build().
Aborting...
-> error making: gcc11-exit status 4
-> Failed to install the following packages. Manual intervention is required:
gcc11-libs - exit status 4
is it related to isl, should i try the fix below?
C0rn3j commented on 2023-04-19 08:16 (UTC) (edited on 2023-06-19 09:20 (UTC) by C0rn3j)
To import the key:
gpg --keyserver hkps://keyserver.ubuntu.com --recv-key 3AB00996FC26A641
EDIT: No longer valid, get new one above
eduardolucioac commented on 2023-04-13 04:26 (UTC) (edited on 2023-04-13 04:28 (UTC) by eduardolucioac)
Workaround about The isl url https://ftp.gnu.org/pub/gcc/infrastructure/isl-0.24.tar.bz2 is broken.
comment.
Use...
yay --editmenu -S gcc11-libs
... and change...
_isl_url="https://${_isl_host}/pub/gcc/infrastructure/isl-${_islver}.tar.bz2"
... to...
_isl_url="https://libisl.sourceforge.io/isl-0.24.tar.bz2"
.
Done! 😉
[Ref(s).: https://forum.endeavouros.com/t/how-to-edit-pkgbuild-in-yay/16864 ]
Pinned Comments
lahwaacz commented on 2023-08-27 15:27 (UTC)
@AskAlice It is much simpler to set the
MAKEFLAGS
environment variable, e.g.export MAKEFLAGS="-j$(nproc)"
, and then build the package. See the relevant wiki section: https://wiki.archlinux.org/title/Makepkg#Parallel_compilationC0rn3j commented on 2023-06-19 09:21 (UTC)
To import the new key:
gpg --keyserver hkps://keyserver.ubuntu.com --recv-key 6C35B99309B5FA62
FabioLolix commented on 2023-05-16 07:26 (UTC)
@DarshK35 you need to add the PGP key, gcc is better build in chroot with devtools (don't know what is using manjaro nowdays)
@joshm gcc is quite long, especially if makepkg.conf isn't configured to use all cores