Package Details: nettle7 3.10.1-1

Git Clone URL: https://aur.archlinux.org/nettle7.git (read-only, click to copy)
Package Base: nettle7
Description: A low-level cryptographic library (legacy version)
Upstream URL: https://www.lysator.liu.se/~nisse/nettle
Licenses: GPL2
Provides: libhogweed.so.5, libnettle.so.7
Submitter: crabvk
Maintainer: crabvk
Last Packager: crabvk
Votes: 0
Popularity: 0.000000
First Submitted: 2022-12-29 08:34 (UTC)
Last Updated: 2025-04-05 12:50 (UTC)

Latest Comments

crabvk commented on 2025-04-05 12:51 (UTC)

@dixyes
Updated to the latest version, should compile fine now.

dixyes commented on 2025-04-04 06:41 (UTC)

Failed to build using newer gcc at this time (seems to be an autotools bug)

Can simply fix with this PKGBUILD patch

diff --git a/PKGBUILD b/PKGBUILD
index acd7510..f5e4877 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -22,7 +22,7 @@ build() {
     cd $_pkgname-$pkgver
     ./configure --prefix=/usr \
         --disable-static
-    make
+    make CFLAGS=-fPIC
 }

 check() {