summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorJoan Bruguera Micó2024-03-10 23:40:50 +0000
committerJoan Bruguera Micó2024-03-10 23:40:50 +0000
commit83dde4df3ae0746d7c5052ebc5b01c817c6670c2 (patch)
treec4d4fbb6ac55ff42b4bffc978f1cbeb5171d41d3 /PKGBUILD
parent05b434127d353674aef266e6abc186eb3f6405da (diff)
downloadaur-83dde4df3ae0746d7c5052ebc5b01c817c6670c2.tar.gz
Fix build with GCC 14
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD5
1 files changed, 4 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD
index ca7637d44f16..938ade19f3b4 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname='dimemas'
pkgdesc='High-abstracted network simulator for message-passing programs (from BSC).'
pkgver='5.4.2.20210310'
-pkgrel='3'
+pkgrel='4'
arch=('x86_64')
url='https://www.bsc.es/discover-bsc/organisation/scientific-structure/performance-tools'
license=('LGPL2.1')
@@ -27,6 +27,9 @@ prepare() {
build() {
cd "$srcdir/$pkgname-${pkgver%.*}"
+ # For now, ignore new errors from GCC 14 (see https://gcc.gnu.org/gcc-14/porting_to.html)
+ export CFLAGS="$CFLAGS -Wno-error=implicit-function-declaration"
+
# NOTE: The following optional features are NOT enabled:
# * Java GUI
./configure \