diff options
author | Andreas Enge <andreas@enge.fr> | 2025-07-27 23:52:46 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-27 23:52:46 +0200 |
commit | 58efd7e9f70df7f687abe8c1d35d0301303931e7 (patch) | |
tree | dd11b70470de7892d27892fdd8ee78030ef7e788 /gnu/packages/lisp.scm | |
parent | 9daa92a9684cffa9e391bd80ab57a6882174c137 (diff) |
gnu: s7: Fix build with gcc-14.
* gnu/packages/lisp.scm (s7-bootstrap)[arguments]<#:phases>{build}:
Add a compiler flag.
Change-Id: Ic302c72d137c81a37f61a3fdfc58fc998f46dfe4
Diffstat (limited to 'gnu/packages/lisp.scm')
-rw-r--r-- | gnu/packages/lisp.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index ee03ed5ee8..6d0a742a08 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -1325,7 +1325,8 @@ not likely to change.") (invoke #$(cc-for-target) "notcurses_s7.c" "-I." "-O2" "-g" "-shared" "-o" "libnotcurses_s7.so" - "-lnotcurses-core" "-fPIC") + "-lnotcurses-core" "-fPIC" + "-Wno-error=implicit-function-declaration") ;; Need s7.o and ffitest for tests (display "[BUILD] s7.o\n") (invoke #$(cc-for-target) "-c" "s7.c" "-o" |