From 46465ab437ab2a15e9d2a4f1ed9e8eca72eee9cb Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Sun, 27 Sep 2020 20:46:53 +0100 Subject: Tweak some things to maybe enable cross compilation --- configure.ac | 5 +++++ guile.am | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 2a33f4d..9995c38 100644 --- a/configure.ac +++ b/configure.ac @@ -8,6 +8,11 @@ if test "x$GUILD" = "x"; then AC_MSG_ERROR(['guild' binary not found; please check your guile-3.x installation.]) fi +if test "$cross_compiling" != no; then + GUILE_TARGET="--target=$host_alias" + AC_SUBST([GUILE_TARGET]) +fi + AC_PATH_PROG([guix], [guix]) AC_PATH_PROG([sqitch], [sqitch]) diff --git a/guile.am b/guile.am index df3df98..7f07ca2 100644 --- a/guile.am +++ b/guile.am @@ -19,4 +19,4 @@ EXTRA_DIST = $(SOURCES) $(NOCOMP_SOURCES) GUILE_WARNINGS = -Wunbound-variable -Warity-mismatch -Wformat SUFFIXES = .scm .go .scm.go: - $(AM_V_GEN)$(top_builddir)/pre-inst-env $(GUILE_TOOLS) compile $(GUILE_WARNINGS) -o "$@" "$<" + $(AM_V_GEN)$(top_builddir)/pre-inst-env $(GUILE_TOOLS) compile $(GUILE_TARGET) $(GUILE_WARNINGS) -o "$@" "$<" -- cgit v1.2.3