Deleted Added
full compact
freebsd-spec.h (169706) freebsd-spec.h (182627)
1/* Base configuration file for all FreeBSD targets.
2 Copyright (C) 1999, 2000, 2001, 2004, 2005 Free Software Foundation, Inc.
3
4This file is part of GCC.
5
6GCC is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)

--- 4 unchanged lines hidden (view full) ---

13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GCC; see the file COPYING. If not, write to
18the Free Software Foundation, 51 Franklin Street, Fifth Floor,
19Boston, MA 02110-1301, USA. */
20
1/* Base configuration file for all FreeBSD targets.
2 Copyright (C) 1999, 2000, 2001, 2004, 2005 Free Software Foundation, Inc.
3
4This file is part of GCC.
5
6GCC is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)

--- 4 unchanged lines hidden (view full) ---

13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GCC; see the file COPYING. If not, write to
18the Free Software Foundation, 51 Franklin Street, Fifth Floor,
19Boston, MA 02110-1301, USA. */
20
21/* $FreeBSD: head/contrib/gcc/config/freebsd-spec.h 169706 2007-05-19 02:30:20Z kan $ */
21/* $FreeBSD: head/contrib/gcc/config/freebsd-spec.h 182627 2008-09-01 18:46:03Z obrien $ */
22
23/* Common FreeBSD configuration.
24 All FreeBSD architectures should include this file, which will specify
25 their commonalities.
26 Adapted from gcc/config/freebsd.h by
27 David O'Brien <obrien@FreeBSD.org>
28 Loren J. Rittle <ljrittle@acm.org>. */
29

--- 150 unchanged lines hidden (view full) ---

180#if defined(HAVE_LD_EH_FRAME_HDR)
181#define LINK_EH_SPEC "%{!static:--eh-frame-hdr} "
182#endif
183
184/* Use --as-needed -lgcc_s for eh support. */
185#ifdef HAVE_LD_AS_NEEDED
186#define USE_LD_AS_NEEDED 1
187#endif
22
23/* Common FreeBSD configuration.
24 All FreeBSD architectures should include this file, which will specify
25 their commonalities.
26 Adapted from gcc/config/freebsd.h by
27 David O'Brien <obrien@FreeBSD.org>
28 Loren J. Rittle <ljrittle@acm.org>. */
29

--- 150 unchanged lines hidden (view full) ---

180#if defined(HAVE_LD_EH_FRAME_HDR)
181#define LINK_EH_SPEC "%{!static:--eh-frame-hdr} "
182#endif
183
184/* Use --as-needed -lgcc_s for eh support. */
185#ifdef HAVE_LD_AS_NEEDED
186#define USE_LD_AS_NEEDED 1
187#endif
188
189#define FBSD_SIZE_TYPE \
190 (POINTER_SIZE == 64 ? "long unsigned int" : "unsigned int")
191#define FBSD_PTRDIFF_TYPE \
192 (POINTER_SIZE == 64 ? "long int" : "int")