From 9d069ac37fb121b2794681480f8691d5699de9f7 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Wed, 25 Jun 2014 16:35:58 +0100 Subject: Fixes to allow a toolchain configured with --enable-all to build on a 32-bit host. * Makefile.am (ALL_EMULATION_SOURCES): Move ei386pep.c from here... (ALL_64_EMULATION_SOURCES): ... to here. (ALL_EMUL_EXTRA_OFILES): Move pep-dll.o from here... (ALL_64_EMUL_EXTRA_OFILES): New. ... to here. * configure.in (EMUL_EXTRA_OFILES): Include ALL_64_EMUL_EXTRA_OFILES when making a 64-bit enabled build. * Makefile.in: Regenerate. * configure: Regenerate. --- ld/configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ld/configure') diff --git a/ld/configure b/ld/configure index 6dd7bc6..4942c2d 100755 --- a/ld/configure +++ b/ld/configure @@ -16959,10 +16959,11 @@ TDIRS=tdirs if test x${all_targets} = xtrue; then if test x${want64} = xtrue; then EMULATION_OFILES='$(ALL_EMULATIONS) $(ALL_64_EMULATIONS)' + EMUL_EXTRA_OFILES='$(ALL_EMUL_EXTRA_OFILES) $(ALL_64_EMUL_EXTRA_OFILES)' else EMULATION_OFILES='$(ALL_EMULATIONS)' + EMUL_EXTRA_OFILES='$(ALL_EMUL_EXTRA_OFILES)' fi - EMUL_EXTRA_OFILES='$(ALL_EMUL_EXTRA_OFILES)' else EMULATION_OFILES=$all_emuls EMUL_EXTRA_OFILES=$all_emul_extras -- cgit v1.1