diff options
Diffstat (limited to 'ld/ld-emul.c')
-rwxr-xr-x | ld/ld-emul.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ld/ld-emul.c b/ld/ld-emul.c index 80f1329..70ee76f 100755 --- a/ld/ld-emul.c +++ b/ld/ld-emul.c @@ -36,6 +36,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ extern ld_emulation_xfer_type ld_lnk960_emulation; extern ld_emulation_xfer_type ld_gld_emulation; +extern ld_emulation_xfer_type ld_vanilla_emulation; extern ld_emulation_xfer_type ld_gld68k_emulation; extern ld_emulation_xfer_type ld_gld960_emulation; @@ -112,6 +113,9 @@ char *target; else if (strcmp(target,GLD_EMULATION_NAME)==0) { ld_emulation = &ld_gld_emulation; } + else if (strcmp(target,VANILLA_EMULATION_NAME)==0) { + ld_emulation = &ld_vanilla_emulation; + } else if (strcmp(target,GLD68K_EMULATION_NAME)==0) { ld_emulation = &ld_gld68k_emulation; } |