mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
build: Fix cross-compilation in out-of-tree-builds
gen-scmconfig.h is generated in libguile, not $(top_builddir). * libguile/Makefile.am: Add '-I.' when compiling gen-scmconfig.o. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
ebcc9d1e3a
commit
57a889b728
1 changed files with 5 additions and 4 deletions
|
@ -62,14 +62,15 @@ gen_scmconfig_SOURCES = gen-scmconfig.c
|
||||||
## Override default rule; this should be compiled for BUILD host. Note
|
## Override default rule; this should be compiled for BUILD host. Note
|
||||||
## that we don't add $(AM_CPPFLAGS) here, as we need to run this
|
## that we don't add $(AM_CPPFLAGS) here, as we need to run this
|
||||||
## program, but $(top_srcdir)/lib has a gnulib configured for the
|
## program, but $(top_srcdir)/lib has a gnulib configured for the
|
||||||
## target. Instead we manually add $(top_builddir), in order to pick up
|
## target. Instead we manually add $(top_builddir) and the current
|
||||||
## the generated config.h and gen-scmconfig.h. Nothing else from Guile
|
## directory, in order to pick up the generated config.h and
|
||||||
## is included by this code generator.
|
## gen-scmconfig.h. Nothing else from Guile is included by this code
|
||||||
|
## generator.
|
||||||
gen-scmconfig.$(OBJEXT): gen-scmconfig.c
|
gen-scmconfig.$(OBJEXT): gen-scmconfig.c
|
||||||
$(AM_V_GEN) \
|
$(AM_V_GEN) \
|
||||||
if [ "$(cross_compiling)" = "yes" ]; then \
|
if [ "$(cross_compiling)" = "yes" ]; then \
|
||||||
$(CC_FOR_BUILD) $(DEFS) $(DEFAULT_INCLUDES) -I$(top_builddir) \
|
$(CC_FOR_BUILD) $(DEFS) $(DEFAULT_INCLUDES) -I$(top_builddir) \
|
||||||
-c -o $@ $<; \
|
-I. -c -o $@ $<; \
|
||||||
else \
|
else \
|
||||||
$(COMPILE) -c -o $@ $<; \
|
$(COMPILE) -c -o $@ $<; \
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue