darwin-c.c (handle_c_option): Handle -fapple-kext here so we can...

* config/darwin-c.c (handle_c_option): Handle -fapple-kext here so
	we can...
	* config/darwin.opt (fapple-kext): Make C++ only.
	* config/darwin.c (darwin_override_options): Remove code to ensure
	-fapple-kext is given for C++ only.

From-SVN: r123792
This commit is contained in:
Mike Stump 2007-04-13 17:29:27 +00:00 committed by Mike Stump
parent d6a7a3be74
commit c40ce8f320
4 changed files with 12 additions and 6 deletions

View File

@ -1,3 +1,11 @@
2007-04-13 Mike Stump <mrs@apple.com>
* config/darwin-c.c (handle_c_option): Handle -fapple-kext here so
we can...
* config/darwin.opt (fapple-kext): Make C++ only.
* config/darwin.c (darwin_override_options): Remove code to ensure
-fapple-kext is given for C++ only.
2007-04-13 Richard Sandiford <richard@codesourcery.com>
* config/mips/vxworks.h (SUBTARGET_OVERRIDE_OPTIONS): Define.

View File

@ -635,6 +635,9 @@ handle_c_option (size_t code,
case OPT_iframework:
add_system_framework_path (xstrdup (arg));
break;
case OPT_fapple_kext:
;
}
/* We recognized the option. */

View File

@ -1708,11 +1708,6 @@ darwin_kextabi_p (void) {
void
darwin_override_options (void)
{
if (flag_apple_kext && strcmp (lang_hooks.name, "GNU C++") != 0)
{
warning (0, "command line option %<-fapple-kext%> is only valid for C++");
flag_apple_kext = 0;
}
if (flag_mkernel || flag_apple_kext)
{
/* -mkernel implies -fapple-kext for C++ */

View File

@ -36,7 +36,7 @@ Target RejectNegative Report Var(darwin_one_byte_bool)
Set sizeof(bool) to 1
fapple-kext
Target Report Var(flag_apple_kext)
Target Report C++ Var(flag_apple_kext)
Generate code for darwin loadable kernel extensions
mkernel