comparison gcc/config/gnu.h @ 67:f6334be47118

update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
author nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
date Tue, 22 Mar 2011 17:18:12 +0900
parents a06113de4d67
children 04ced10e8804
comparison
equal deleted inserted replaced
65:65488c3d617d 67:f6334be47118
1 /* Configuration common to all targets running the GNU system. */ 1 /* Configuration common to all targets running the GNU system. */
2 2
3 /* 3 /*
4 Copyright (C) 1994, 1995, 1997, 1998, 1999, 2002, 2003, 2004, 2007, 2008 Free 4 Copyright (C) 1994, 1995, 1997, 1998, 1999, 2002, 2003, 2004, 2007, 2008, 2011
5 Software Foundation, Inc. 5 Free Software Foundation, Inc.
6 6
7 This file is part of GCC. 7 This file is part of GCC.
8 8
9 GCC is free software: you can redistribute it and/or modify 9 GCC is free software: you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by 10 it under the terms of the GNU General Public License as published by
20 along with GCC. If not, see <http://www.gnu.org/licenses/>. 20 along with GCC. If not, see <http://www.gnu.org/licenses/>.
21 */ 21 */
22 22
23 /* Provide GCC options for standard feature-test macros. */ 23 /* Provide GCC options for standard feature-test macros. */
24 #undef CPP_SPEC 24 #undef CPP_SPEC
25 #define CPP_SPEC "%{posix:-D_POSIX_SOURCE} %{bsd:-D_BSD_SOURCE}" 25 #define CPP_SPEC "%{posix:-D_POSIX_SOURCE}"
26 26
27 /* Default C library spec. Use -lbsd-compat for gcc -bsd. */ 27 /* Default C library spec. */
28 #undef LIB_SPEC 28 #undef LIB_SPEC
29 #define LIB_SPEC "%{pthread:-lpthread} %{bsd:-lbsd-compat} %{pg|p|profile:-lc_p;:-lc}" 29 #define LIB_SPEC "%{pthread:-lpthread} %{pg|p|profile:-lc_p;:-lc}"
30 30
31 /* Standard include directory. In GNU, "/usr" is a four-letter word. */ 31 /* Standard include directory. In GNU, "/usr" is a four-letter word. */
32 #undef STANDARD_INCLUDE_DIR 32 #undef STANDARD_INCLUDE_DIR
33 #define STANDARD_INCLUDE_DIR "/include" 33 #define STANDARD_INCLUDE_DIR "/include"
34 34