Accepting request 963651 from home:Andreas_Schwab:Factory

- adjust-32bit-big-endian-build-flags.patch: replace with working patch

OBS-URL: https://build.opensuse.org/request/show/963651
OBS-URL: https://build.opensuse.org/package/show/devel:languages:misc/guile?expand=0&rev=123
This commit is contained in:
Peter Simons 2022-03-22 06:15:45 +00:00 committed by Git OBS Bridge
parent 0cfc7ac2ed
commit 1f57a08f84
2 changed files with 7 additions and 7 deletions

View File

@ -1,16 +1,11 @@
--- a/stage0/Makefile.am
+++ b/stage0/Makefile.am
@@ -22,7 +22,12 @@
@@ -22,7 +22,7 @@
GUILE_WARNINGS = -W0
-GUILE_OPTIMIZATIONS = -O1
+$(ifeq($SCM_PREBUILT_BINARIES,"32-bit-little-endian") \
+ GUILE_OPTIMIZATIONS = -O1 -Oresolve-primitives -Ocps \
+else \
+ GUILE_OPTIMIZATIONS = -O1 \
+endif)
+
+GUILE_OPTIMIZATIONS = -O1 $(if $(filter 32-bit-big-endian, $(SCM_PREBUILT_BINARIES)),-Oresolve-primitives -Ocps)
GUILE_BOOTSTRAP_STAGE = stage0
include $(top_srcdir)/am/bootstrap.am

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Mon Mar 21 10:38:43 UTC 2022 - Andreas Schwab <schwab@suse.de>
- adjust-32bit-big-endian-build-flags.patch: replace with working patch
-------------------------------------------------------------------
Mon Mar 7 07:28:50 UTC 2022 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>