diff options
author | Richard Henderson <rth@redhat.com> | 1998-07-14 22:40:17 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 1998-07-14 22:40:17 +0000 |
commit | d51be0a936f3209927f1087c603867570b596c6c (patch) | |
tree | b790245ae2b2253707ce02f4ad1de1419069525b /ld | |
parent | 1aaf4ccc1235973d0a0373d96005dffade8bfc6c (diff) | |
download | gdb-d51be0a936f3209927f1087c603867570b596c6c.zip gdb-d51be0a936f3209927f1087c603867570b596c6c.tar.gz gdb-d51be0a936f3209927f1087c603867570b596c6c.tar.bz2 |
* configure.tgt (i?86-*-beos{pe,elf,}*): Recognize.
* Makefile.am (ei386beos.o): New.
* emulparams/i386beos.sh: New file.
* emultempl/beos.em, scripttempl/i386beos.sc: New file.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/emulparams/.Sanitize | 7 | ||||
-rw-r--r-- | ld/emultempl/.Sanitize | 7 | ||||
-rw-r--r-- | ld/scripttempl/.Sanitize | 7 |
3 files changed, 21 insertions, 0 deletions
diff --git a/ld/emulparams/.Sanitize b/ld/emulparams/.Sanitize index 7401333..9649394 100644 --- a/ld/emulparams/.Sanitize +++ b/ld/emulparams/.Sanitize @@ -36,6 +36,13 @@ else lose_these_too="${r5900_files} ${lose_these_too}" fi +beos_files="i386beos.sh" +if ( echo $* | grep keep\-beos > /dev/null ) ; then + keep_these_too="${beos_files} ${keep_these_too}" +else + lose_these_too="${beos_files} ${lose_these_too}" +fi + # All files listed between the "Things-to-keep:" line and the # "Do-last:" line will be kept. All other files will be removed. # Directories listed in this section will have their own Sanitize diff --git a/ld/emultempl/.Sanitize b/ld/emultempl/.Sanitize index 9da03de..530ad84 100644 --- a/ld/emultempl/.Sanitize +++ b/ld/emultempl/.Sanitize @@ -15,6 +15,13 @@ Do-first: +beos_files="beos.em" +if ( echo $* | grep keep\-beos > /dev/null ) ; then + keep_these_too="${beos_files} ${keep_these_too}" +else + lose_these_too="${beos_files} ${lose_these_too}" +fi + # All files listed between the "Things-to-keep:" line and the # "Do-last:" line will be kept. All other files will be removed. diff --git a/ld/scripttempl/.Sanitize b/ld/scripttempl/.Sanitize index aa7fe54..44dada4 100644 --- a/ld/scripttempl/.Sanitize +++ b/ld/scripttempl/.Sanitize @@ -29,6 +29,13 @@ else lose_these_too="${tic80_files} ${lose_these_too}" fi +beos_files="i386beos.sc" +if ( echo $* | grep keep\-beos > /dev/null ) ; then + keep_these_too="${beos_files} ${keep_these_too}" +else + lose_these_too="${beos_files} ${lose_these_too}" +fi + # All files listed between the "Things-to-keep:" line and the # "Do-last:" line will be kept. All other files will be removed. # Directories listed in this section will have their own Sanitize |