git » iverilog.git » commit b3de9ba

fix lto strip by adding -ffat-lto-objects to CFLAGS

author Frederik Schwan
2022-01-24 23:36:22 UTC
committer Frederik Schwan
2022-01-24 23:36:22 UTC
parent 87644329c69efd6077bb38462de0873b6d761f68

fix lto strip by adding -ffat-lto-objects to CFLAGS

PKGBUILD +4 -4

diff --git a/PKGBUILD b/PKGBUILD
index 092ffba..08ccdcf 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,10 +4,10 @@
 
 pkgname=iverilog
 pkgver=11.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Icarus Verilog compiler and simulation tool'
 arch=('x86_64')
-url='http://iverilog.icarus.com/'
+url='https://github.com/steveicarus/iverilog'
 license=('GPL')
 depends=('zlib' 'bzip2')
 makedepends=('gperf' 'git')
@@ -25,9 +25,9 @@ prepare() {
 build() {
   cd "$pkgname"
 
-  CFLAGS+=' -fcommon' # https://wiki.gentoo.org/wiki/Gcc_10_porting_notes/fno_common
+  CFLAGS+=' -ffat-lto-objects -fcommon' # https://wiki.gentoo.org/wiki/Gcc_10_porting_notes/fno_common
 
-  ./configure --prefix=/usr
+  CXXCPP=/usr/bin/cpp ./configure --prefix=/usr
   make
 }