diff options
author | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-06 08:41:37 +0000 |
---|---|---|
committer | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-06 08:41:37 +0000 |
commit | 388807abce552526b604292dbf849b05f600255b (patch) | |
tree | 5aa04462241caebfe03d88f0811f2affe93e6d35 /gcc/config/host-darwin.h | |
parent | f5c968c20f0edef7f18506074d83c14cfe5a55bb (diff) | |
download | gcc-388807abce552526b604292dbf849b05f600255b.tar.gz |
* config.host: Add a section for generic hosts, and a subsection
for Darwin. Add a case for x86-darwin. Update ppc-darwin case.
* config/host-darwin.c: New, split out of config/rs6000/host-darwin.c.
* config/host-darwin.h: New.
* config/x-darwin: New.
* config/i386/host-i386-darwin.c: New.
* config/i386/x-darwin: New.
* config/rs6000/host-darwin.c: Include host-darwin.h.
(darwin_rs6000_gt_pch_get_address): Move to config/host-darwin.c.
(darwin_rs6000_gt_pch_use_address): Likewise.
* config/rs6000/x-darwin: Change name of .o built, update
dependencies for changes to rs6000/host-darwin.c.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@97709 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/host-darwin.h')
-rw-r--r-- | gcc/config/host-darwin.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gcc/config/host-darwin.h b/gcc/config/host-darwin.h new file mode 100644 index 00000000000..74257074512 --- /dev/null +++ b/gcc/config/host-darwin.h @@ -0,0 +1,28 @@ +/* Darwin host-specific hook definitions. + Copyright (C) 2003, 2004, 2005 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, 59 Temple Place - Suite 330, Boston, + MA 02111-1307, USA. */ + +extern void * darwin_gt_pch_get_address (size_t sz, int fd); +extern int darwin_gt_pch_use_address (void *addr, size_t sz, int fd, + size_t off); + +#undef HOST_HOOKS_GT_PCH_GET_ADDRESS +#define HOST_HOOKS_GT_PCH_GET_ADDRESS darwin_gt_pch_get_address +#undef HOST_HOOKS_GT_PCH_USE_ADDRESS +#define HOST_HOOKS_GT_PCH_USE_ADDRESS darwin_gt_pch_use_address |