diff options
author | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-03-21 20:59:11 +0000 |
---|---|---|
committer | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-03-21 20:59:11 +0000 |
commit | 517cabaa23db050f16284d3718f49f25cc881940 (patch) | |
tree | f6e4ea73d450d97d8eff8a07a819a047dcbb917b /gcc/config/sol2-10.h | |
parent | 8168e38d7deee31d7725e96db8729a20f9f00c3a (diff) | |
download | gcc-517cabaa23db050f16284d3718f49f25cc881940.tar.gz |
2006-03-21 Eric Botcazou <ebotcazou@libertysurf.fr>
* config.gcc (i[34567]86-*-solaris2*): Add config/sol2-10.h to
tm_file on Solaris 10 and later.
(sparc64-*-solaris2*): Likewise.
(sparc-*-solaris2*): Likewise.
* config/sol26.h: Rename to config/sol2-6.h.
* config/sol2-10.h: New file.
testsuite/
* gcc.dg/builtins-config.h (Solaris case): Define HAVE_C99_RUNTIME
if _STDC_C99 is defined.
* gcc.dg/builtins-18.c: Pass -std=c99 on Solaris.
* gcc.dg/builtins-20.c: Likewise.
* gcc.dg/builtins-53.c: Likewise.
* gcc.dg/single-precision-constant.c: Likewise. Also pass
-mmacosx-version-min=10.3 on PowerPC/Darwin.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@112255 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/sol2-10.h')
-rw-r--r-- | gcc/config/sol2-10.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gcc/config/sol2-10.h b/gcc/config/sol2-10.h new file mode 100644 index 00000000000..1da6bee10de --- /dev/null +++ b/gcc/config/sol2-10.h @@ -0,0 +1,24 @@ +/* Operating system specific defines to be used when targeting GCC for any + Solaris 2 system starting from Solaris 10. + Copyright 2006 Free Software Foundation, Inc. + +This file is part of GCC. + +GCC is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. + +GCC is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with GCC; see the file COPYING. If not, write to +the Free Software Foundation, 51 Franklin Street, Fifth Floor, +Boston, MA 02110-1301, USA. */ + +/* Solaris 10 has the float and long double forms of math functions. */ +#undef TARGET_C99_FUNCTIONS +#define TARGET_C99_FUNCTIONS 1 |