diff options
| author | Brad Smith | 2017-11-08 00:46:11 +0100 |
|---|---|---|
| committer | Peter Maydell | 2017-11-23 17:52:24 +0100 |
| commit | c65d5e4e1d6841524c49a07bcdd56094f49982a4 (patch) | |
| tree | 694c9672dea4e7e2456bc2a32500fdcfbdd94008 /configure | |
| parent | Merge remote-tracking branch 'remotes/juanquintela/tags/migration/20171122' i... (diff) | |
| download | qemu-c65d5e4e1d6841524c49a07bcdd56094f49982a4.tar.gz qemu-c65d5e4e1d6841524c49a07bcdd56094f49982a4.tar.xz qemu-c65d5e4e1d6841524c49a07bcdd56094f49982a4.zip | |
configure: Deal with OpenBSD/i386 emulation linker
OpenBSD/i386 uses elf_i386_obsd for the emulation linker.
Signed-off-by: Brad Smith <brad@comstyle.com>
Message-id: 20171107234608.GA395@humpty.home.comstyle.com
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'configure')
| -rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -5302,9 +5302,9 @@ if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \ "$targetos" != "Darwin" -a "$targetos" != "SunOS" -a \ "$softmmu" = yes ; then # Different host OS linkers have different ideas about the name of the ELF - # emulation. Linux and OpenBSD use 'elf_i386'; FreeBSD uses the _fbsd - # variant; and Windows uses i386pe. - for emu in elf_i386 elf_i386_fbsd i386pe; do + # emulation. Linux and OpenBSD/amd64 use 'elf_i386'; FreeBSD uses the _fbsd + # variant; OpenBSD/i386 uses the _obsd variant; and Windows uses i386pe. + for emu in elf_i386 elf_i386_fbsd elf_i386_obsd i386pe; do if "$ld" -verbose 2>&1 | grep -q "^[[:space:]]*$emu[[:space:]]*$"; then ld_i386_emulation="$emu" roms="optionrom" |
