diff options
author | Nick Clifton <nickc@redhat.com> | 2014-06-25 16:35:58 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2014-06-25 16:35:58 +0100 |
commit | 9d069ac37fb121b2794681480f8691d5699de9f7 (patch) | |
tree | c79286d00b2da6d403e8456e37c487d006328760 /ld/configure | |
parent | 28bf260962673c554b926a013af27c77fe82870c (diff) | |
download | gdb-9d069ac37fb121b2794681480f8691d5699de9f7.zip gdb-9d069ac37fb121b2794681480f8691d5699de9f7.tar.gz gdb-9d069ac37fb121b2794681480f8691d5699de9f7.tar.bz2 |
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.
Diffstat (limited to 'ld/configure')
-rwxr-xr-x | ld/configure | 3 |
1 files changed, 2 insertions, 1 deletions
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 |