Commit 927b679c by Iain Sandoe

darwin.h (GCC_DRIVER_HOST_INITIALIZATION): Only expose when not building for target.


gcc:

	* config/darwin.h (GCC_DRIVER_HOST_INITIALIZATION):
	Only expose when not building for target.

From-SVN: r168017
parent 3a9f56e8
2010-12-18 Iain Sandoe <iains@gcc.gnu.org>
* config/darwin.h (GCC_DRIVER_HOST_INITIALIZATION):
Only expose when not building for target.
2010-12-17 Joseph Myers <joseph@codesourcery.com> 2010-12-17 Joseph Myers <joseph@codesourcery.com>
* config/netbsd.opt, config/netbsd-elf.opt: New files. * config/netbsd.opt, config/netbsd-elf.opt: New files.
...@@ -963,10 +963,11 @@ __enable_execute_stack (void *addr) \ ...@@ -963,10 +963,11 @@ __enable_execute_stack (void *addr) \
#define TARGET_HAS_TARGETCM 1 #define TARGET_HAS_TARGETCM 1
extern void darwin_driver_init (unsigned int *decoded_options_count, #ifndef USED_FOR_TARGET
struct cl_decoded_option **decoded_options); extern void darwin_driver_init (unsigned int *,struct cl_decoded_option **);
#define GCC_DRIVER_HOST_INITIALIZATION \ #define GCC_DRIVER_HOST_INITIALIZATION \
darwin_driver_init (&decoded_options_count, &decoded_options) darwin_driver_init (&decoded_options_count, &decoded_options)
#endif
/* The Apple assembler and linker do not support constructor priorities. */ /* The Apple assembler and linker do not support constructor priorities. */
#undef SUPPORTS_INIT_PRIORITY #undef SUPPORTS_INIT_PRIORITY
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment