aboutsummaryrefslogtreecommitdiff
path: root/gas/configure.in
diff options
context:
space:
mode:
authorK. Richard Pixley <rich@cygnus>1992-03-12 12:47:36 +0000
committerK. Richard Pixley <rich@cygnus>1992-03-12 12:47:36 +0000
commit8c1b25e4b15410a86662a6ab3278092d0a98fc68 (patch)
tree25d19609ae079af8ad34f9a1f9c95fdddc3d2d9e /gas/configure.in
parentdf7204ad8991dd77cd41325bc4aca928f4f5eacc (diff)
downloadfsf-binutils-gdb-8c1b25e4b15410a86662a6ab3278092d0a98fc68.zip
fsf-binutils-gdb-8c1b25e4b15410a86662a6ab3278092d0a98fc68.tar.gz
fsf-binutils-gdb-8c1b25e4b15410a86662a6ab3278092d0a98fc68.tar.bz2
* configure.in: vxworks68 gets te-sun3.h.
* expr.c: remove limitation that local_labels_dollar or local_labels_fb must be < 10. * symbols.c: remove local_labels_dollar, replace with a function interface for a sparse array. All users adjusted.
Diffstat (limited to 'gas/configure.in')
-rw-r--r--gas/configure.in14
1 files changed, 11 insertions, 3 deletions
diff --git a/gas/configure.in b/gas/configure.in
index 914feaa..d503937 100644
--- a/gas/configure.in
+++ b/gas/configure.in
@@ -19,6 +19,9 @@
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#
+# This file was written, and is maintained by K. Richard Pixley
+# <rich@cygnus.com>.
+
# This file is a shell script that supplies the information necessary
# to tailor a template configure script into the configure script
# appropriate for this directory. For more information, check any
@@ -76,6 +79,7 @@ aix*)
case "${target_cpu}" in
i386) obj_format=coff
target_cpu=i386aix
+ emulation=i386aix
;;
esac
;;
@@ -86,13 +90,13 @@ bsd* | sunos*) obj_format=aout ;;
ebmon-old)
obj_format=coff
- need_bfd="$(unsubdir)/../bfd$(subdir)/libbfd.a"
+ need_bfd="./../bfd/libbfd.a"
target_cpu=ebmon29k
;;
ebmon)
obj_format=coffbfd
- need_bfd="$(unsubdir)/../bfd$(subdir)/libbfd.a"
+ need_bfd="./../bfd/libbfd.a"
target_cpu=ebmon29k
;;
@@ -100,7 +104,7 @@ generic) obj_format=generic ;;
hms)
obj_format=coffbfd
- need_bfd="$(unsubdir)/../bfd$(subdir)/libbfd.a"
+ need_bfd="./../bfd/libbfd.a"
;;
sysv32)
@@ -121,6 +125,10 @@ coff* | sysv*)
vxworks)
case ${target_cpu} in
i960) obj_format=bout ;;
+ m68k)
+ obj_format=aout
+ emulation=sun3
+ ;;
*) obj_format=aout ;;
esac
;;