1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-22 00:35:15 +00:00
freebsd-ports/lang/guile/files/extra-patch-bootstrap_Makefile.in
Piotr Kubaj 6edecd95cb lang/guile: fix build on powerpc
1. Same as with guile2, remove the broken 32-bit big-endian bootstrap.
2. As reported in https://debbugs.gnu.org/cgi/bugreport.cgi?bug=45214,
add "-Oresolve-primitives -Ocps" to GUILE_OPTIMIZATIONS.
2022-02-03 13:39:44 +00:00

12 lines
420 B
Plaintext

--- bootstrap/Makefile.in.orig 2022-02-02 15:41:58 UTC
+++ bootstrap/Makefile.in
@@ -1751,7 +1751,7 @@ top_builddir_absolute = @top_builddir_absolute@
top_srcdir = @top_srcdir@
top_srcdir_absolute = @top_srcdir_absolute@
GUILE_WARNINGS = -W0
-GUILE_OPTIMIZATIONS = -O1
+GUILE_OPTIMIZATIONS = -O1 -Oresolve-primitives -Ocps
GOBJECTS = $(SOURCES:%.scm=%.go)
nobase_noinst_DATA = $(GOBJECTS)
CLEANFILES = $(GOBJECTS)