diff options
author | Ken Raeburn <raeburn@cygnus> | 1993-05-27 19:57:15 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1993-05-27 19:57:15 +0000 |
commit | b9653d81655b4c0e2f4853ddf749245626c5a495 (patch) | |
tree | 520229dc35ec489135818d7048f6962b1a8971fe /bfd | |
parent | 49864cfa6cfbd8c2a337765346dfda2597e6b8ac (diff) | |
download | gdb-b9653d81655b4c0e2f4853ddf749245626c5a495.zip gdb-b9653d81655b4c0e2f4853ddf749245626c5a495.tar.gz gdb-b9653d81655b4c0e2f4853ddf749245626c5a495.tar.bz2 |
first cut at new maybe-64bit-handling configuration
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/.Sanitize | 12 | ||||
-rw-r--r-- | bfd/ChangeLog | 12 |
2 files changed, 24 insertions, 0 deletions
diff --git a/bfd/.Sanitize b/bfd/.Sanitize index eb4805b..b2df67f 100644 --- a/bfd/.Sanitize +++ b/bfd/.Sanitize @@ -42,6 +42,7 @@ aout-target.h archive.c archures.c bfd-in.h +bfd-in2.h bfd.c bout.c cache.c @@ -141,4 +142,15 @@ Things-to-lose: Do-last: +if ( echo $* | grep keep\-v9 > /dev/null ) ; then + echo Keeping v9 stuff in configure.in. +else + echo Cleaning configure.in ... + grep -v v9 < configure.in > new + if [ -n "${safe}" ] ; then + cp configure.in .Recover + fi + mv new configure.in +fi + # End of file. diff --git a/bfd/ChangeLog b/bfd/ChangeLog index acacaa1..0a12ae7 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,15 @@ +Thu May 27 13:38:47 1993 Ken Raeburn (raeburn@cambridge.cygnus.com) + + * configure.in, Makefile.in: Build bfd-in2.h in source directory, + from bfd-in.h and .c files. Build bfd.h in build directory, + substituting in requested target word size. Insert word size into + makefile, and maybe enable 64-bit targets. + + * bfd-in.h, libbfd.c, demo64.c, targets.c: Define BFD64 if 64 bits + are available. Conditionalize on this. Assume HOST_64_BIT + will be defined if needed, so 64-bit targets are conditionalized + only in the Makefile. + Tue May 25 14:03:56 1993 Ken Raeburn (raeburn@cambridge.cygnus.com) * libbfd.c (COERCE64): Rewrite to avoid out-of-range values. |