diff options
author | Thomas Fitzsimmons <fitzsim@redhat.com> | 2002-02-20 00:47:07 +0000 |
---|---|---|
committer | Thomas Fitzsimmons <fitzsim@redhat.com> | 2002-02-20 00:47:07 +0000 |
commit | 55500bf14fdf743546aefb5208b02d55e43ae483 (patch) | |
tree | 9ae4ba1ab9e321e3b593f7203175eb1a3fd15ba8 | |
parent | aa6df8d7d4770b0410d0009643df70c1277dd499 (diff) | |
download | cygnal-55500bf14fdf743546aefb5208b02d55e43ae483.tar.gz cygnal-55500bf14fdf743546aefb5208b02d55e43ae483.tar.bz2 cygnal-55500bf14fdf743546aefb5208b02d55e43ae483.zip |
* configure.host (newlib_cflags): When host is in m68* add
-DCOMPACT_CTYPE.
-rw-r--r-- | newlib/ChangeLog | 5 | ||||
-rw-r--r-- | newlib/configure.host | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index e39d7db3a..3d347344a 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,8 @@ +2002-02-19 Thomas Fitzsimmons <fitzsim@redhat.com> + + * configure.host (newlib_cflags): When host is in m68* add + -DCOMPACT_CTYPE. + 2002-02-15 Jeff Johnston <jjohnstn@redhat.com> * libc/include/sys/config.h: Add definitions for diff --git a/newlib/configure.host b/newlib/configure.host index d4d6acf10..0679ced6f 100644 --- a/newlib/configure.host +++ b/newlib/configure.host @@ -121,6 +121,7 @@ case "${host_cpu}" in ;; m68*) machine_dir=m68k + newlib_cflags="${newlib_cflags} -DCOMPACT_CTYPE" ;; m88k) machine_dir=m88k |