mirror of
https://github.com/monero-project/monero.git
synced 2025-12-11 01:21:28 +09:00
18 lines
869 B
Diff
18 lines
869 B
Diff
Without ffile-prefix-map, the debug symbols will contain paths for the
|
|
guix store which will include the hashes of each package. However, the
|
|
hash for the same package will differ when on different architectures.
|
|
In order to be reproducible regardless of the architecture used to build
|
|
the package, map all guix store prefixes to something fixed, e.g. /usr.
|
|
|
|
--- a/mingw-w64-libraries/winpthreads/Makefile.in
|
|
+++ b/mingw-w64-libraries/winpthreads/Makefile.in
|
|
@@ -465,7 +465,7 @@ top_build_prefix = @top_build_prefix@
|
|
top_builddir = @top_builddir@
|
|
top_srcdir = @top_srcdir@
|
|
SUBDIRS = . tests
|
|
-AM_CFLAGS = $(am__append_1) $(am__append_3)
|
|
+AM_CFLAGS = $(am__append_1) $(am__append_3) $(shell find /gnu/store -maxdepth 1 -mindepth 1 -type d -exec echo -n " -ffile-prefix-map={}=/usr" \;)
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
lib_LTLIBRARIES = libwinpthread.la
|
|
include_HEADERS = \
|