aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Meissner <gnu@the-meissners.org>1998-04-22 16:32:24 +0000
committerMichael Meissner <gnu@the-meissners.org>1998-04-22 16:32:24 +0000
commitbcb92b02a4c144545b4d01352a5b54cdee5c186d (patch)
treef6bad4c0b83027f8570c3eb5d81e53caee139f08
parentb9bd8aa8798ad9a662b18d2f9d8199323901b7f5 (diff)
downloadgdb-bcb92b02a4c144545b4d01352a5b54cdee5c186d.zip
gdb-bcb92b02a4c144545b4d01352a5b54cdee5c186d.tar.gz
gdb-bcb92b02a4c144545b4d01352a5b54cdee5c186d.tar.bz2
Add support for --enable-target-optspace to compile with -Os instead of -O2, and default d30v, d10v, m32r to use it
-rw-r--r--ChangeLog11
-rw-r--r--configure.in22
2 files changed, 33 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index c18c04a..e671618 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+Wed Apr 22 12:30:10 1998 Michael Meissner <meissner@cygnus.com>
+
+ * configure.in (target_makefile_frag): If --enable-target-optspace,
+ use -Os to compile target libraries rather than -O2. Default to
+ using -Os for d10v and m32r if --{enable,disable}-target-optspace is
+ not used.
+start-sanitize-d30v
+ * configure.in (target_cflags): Ditto for d30v.
+end-sanitize-d30v
+
+
Tue Apr 21 23:06:54 1998 Tom Tromey <tromey@cygnus.com>
* Makefile.in (all-bfd): Depend on all-intl.
diff --git a/configure.in b/configure.in
index fbf5f55..e95af52 100644
--- a/configure.in
+++ b/configure.in
@@ -330,6 +330,28 @@ case "${target}" in
;;
esac
+# If --enable-target-optspace always use -Os instead of -O2 to build
+# the target libraries, similarly if it is not specified, use -Os
+# on selected platforms.
+case "${enable_target_optspace}:${target}" in
+ yes:*)
+ target_makefile_frag="${target_makefile_frag} config/mt-ospace"
+ ;;
+ :m32r-* | :d10v-*)
+ target_makefile_frag="${target_makefile_frag} config/mt-ospace"
+ ;;
+# start-sanitize-d30v
+ :d30v-*-*)
+ target_makefile_frag="${target_makefile_frag} config/mt-ospace"
+ ;;
+# end-sanitize-d30v
+ no:*)
+ ;;
+ *)
+ echo "*** bad value \"${enable_target_optspace}\" for --enable-target-optspace flag; ignored" 1>&2
+ ;;
+esac
+
skipdirs=
gasdir=gas
use_gnu_ld=