diff options
author | Geoffrey Keating <geoffk@apple.com> | 2003-02-06 01:47:56 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2003-02-06 01:47:56 +0000 |
commit | 476d909872696454142e588683a9937a3ef98f5e (patch) | |
tree | 2afad0ecf8b6e8b262fccd46b90578858d21ab7a /gcc/config/rs6000/x-darwin | |
parent | dbdd348907c8d5481bf6bcf29387dfd405c49572 (diff) | |
download | gcc-476d909872696454142e588683a9937a3ef98f5e.zip gcc-476d909872696454142e588683a9937a3ef98f5e.tar.gz gcc-476d909872696454142e588683a9937a3ef98f5e.tar.bz2 |
Makefile.in (host_hook_obj): New.
* Makefile.in (host_hook_obj): New.
(OBJS): Add $(host_hook_obj).
(host_default.o): New rule.
* config.gcc (host_hook_obj): New, default to host-default.o.
(powerpc-*-darwin*): Use host-darwin.o.
(out_host_hook_obj): New.
* configure: Regenerate.
* configure.in: Print information about out_host_hook_obj, substitute
into output files.
* host-default.c: New file.
* hosthooks.h: New file.
* toplev.c (general_init): Call host_hooks.extra_signals.
* config/rs6000/host-darwin.c: New file.
* config/rs6000/x-darwin: New file.
* doc/hostconfig.texi: Add documentation for new host hook.
Rearrange existing documentation.
From-SVN: r62470
Diffstat (limited to 'gcc/config/rs6000/x-darwin')
-rw-r--r-- | gcc/config/rs6000/x-darwin | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/config/rs6000/x-darwin b/gcc/config/rs6000/x-darwin new file mode 100644 index 0000000..6738d45 --- /dev/null +++ b/gcc/config/rs6000/x-darwin @@ -0,0 +1,4 @@ +host-darwin.o : $(srcdir)/config/rs6000/host-darwin.c $(CONFIG_H) $(SYSTEM_H) \ + coretypes.h hosthooks.h hosthooks-def.h toplev.h + $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \ + $(srcdir)/config/rs6000/host-darwin.c |