Add ELF emulation, and make it default if OBJECT_FMT == ELF
This commit is contained in:
parent
c91ac313c1
commit
ae2cecd233
|
@ -1,4 +1,8 @@
|
|||
# $NetBSD: _i386.mk,v 1.1 1998/12/12 21:57:19 kristerw Exp $
|
||||
# $NetBSD: _i386.mk,v 1.2 1999/01/11 09:53:26 christos Exp $
|
||||
|
||||
EMULS= i386nbsd
|
||||
EMULS= i386nbsd elf_i386
|
||||
.if ${OBJECT_FMT} == "ELF"
|
||||
DEFAULT_EMUL= elf_i386
|
||||
.else
|
||||
DEFAULT_EMUL= i386nbsd
|
||||
.endif
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
/* $NetBSD: ldemul-list.h,v 1.4 1998/12/17 13:59:05 mrg Exp $ */
|
||||
/* $NetBSD: ldemul-list.h,v 1.5 1999/01/11 09:53:26 christos Exp $ */
|
||||
|
||||
/* alpha emulations */
|
||||
extern ld_emulation_xfer_type ld_elf64alpha_emulation;
|
||||
|
||||
/* i386 emulations */
|
||||
extern ld_emulation_xfer_type ld_i386nbsd_emulation;
|
||||
extern ld_emulation_xfer_type ld_elf_i386_emulation;
|
||||
|
||||
/* mips emulations */
|
||||
extern ld_emulation_xfer_type ld_elf32lmip_emulation;
|
||||
|
|
Loading…
Reference in New Issue