diff options
author | Jakub Jelinek <jakub@redhat.com> | 2000-01-27 09:42:56 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2000-01-27 09:42:56 +0100 |
commit | 31cedf894693a5d3ce1c56d1f72b527846d42917 (patch) | |
tree | 854fefeafeeb7f302b343a5ffeadfc966c092edd /gcc | |
parent | 24e2e58e0a03c43571c5301c76a398100acc5a3b (diff) | |
download | gcc-31cedf894693a5d3ce1c56d1f72b527846d42917.zip gcc-31cedf894693a5d3ce1c56d1f72b527846d42917.tar.gz gcc-31cedf894693a5d3ce1c56d1f72b527846d42917.tar.bz2 |
linux64.h (CC1_SPEC): If compiling -m32 with -g but no -g option specifying debugging format...
* config/sparc/linux64.h (CC1_SPEC): If compiling -m32 with -g but
no -g option specifying debugging format, default to -gstabs+.
From-SVN: r31641
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/sparc/linux64.h | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6801c88..41f8f7b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-01-27 Jakub Jelinek <jakub@redhat.com> + + * config/sparc/linux64.h (CC1_SPEC): If compiling -m32 with -g but + no -g option specifying debugging format, default to -gstabs+. + Wed Jan 26 22:19:14 1999 J"orn Rennecke <amylaar@cygnus.co.uk> * calls.c (special_function_p): New argument fork_or_exec. diff --git a/gcc/config/sparc/linux64.h b/gcc/config/sparc/linux64.h index d8969a8..4426017 100644 --- a/gcc/config/sparc/linux64.h +++ b/gcc/config/sparc/linux64.h @@ -230,6 +230,7 @@ Boston, MA 02111-1307, USA. */ %{m64:-mptr64 -mstack-bias \ %{!mcpu*:%{!mcypress:%{!msparclite:%{!mf930:%{!mf934:%{!mv8:%{!msupersparc:-mcpu=ultrasparc}}}}}}} \ %{!mno-vis:%{!mcpu=v9:-mvis}}} \ +%{!m64:%{g*:%{!gs*:%{!gd*:%{!gx*:%{!gc*:-gstabs+}}}}}} \ " #else #define CC1_SPEC "\ @@ -238,7 +239,8 @@ Boston, MA 02111-1307, USA. */ %{msparclite:-mcpu=sparclite} %{mf930:-mcpu=f930} %{mf934:-mcpu=f934} \ %{mv8:-mcpu=v8} %{msupersparc:-mcpu=supersparc} \ %{m32:-mptr32 -mno-stack-bias \ - %{!mcpu*:%{!mcypress:%{!msparclite:%{!mf930:%{!mf934:%{!mv8:%{!msupersparc:-mcpu=cypress}}}}}}}} \ + %{!mcpu*:%{!mcypress:%{!msparclite:%{!mf930:%{!mf934:%{!mv8:%{!msupersparc:-mcpu=cypress}}}}}}} \ + %{g*:%{!gs*:%{!gd*:%{!gx*:%{!gc*:-gstabs+}}}}}} \ %{!m32:%{!mcpu*:-mcpu=ultrasparc}} \ %{!mno-vis:%{!m32:%{!mcpu=v9:-mvis}}} \ " |