ldlnk960.c: Special #ifdef to choose little endian ony

ldgram.y: allow forward ref of section
This commit is contained in:
Steve Chamberlain
1992-01-29 16:44:09 +00:00
parent cbbdbb9f29
commit 0cc6a79622
3 changed files with 13 additions and 3 deletions

View File

@ -246,9 +246,13 @@ lnk960_choose_target()
char *from_outside = getenv(TARGET_ENVIRON);
if (from_outside != (char *)NULL)
return from_outside;
#ifdef LNK960_LITTLE
return LNK960_TARGET_LITTLE
#else
return LNK960_TARGET;
#endif
#endif
}
/* The default script if none is offered */