mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-19 22:41:28 +08:00
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:
parent
d6a7a3be74
commit
c40ce8f320
@ -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.
|
||||
|
@ -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. */
|
||||
|
@ -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++ */
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user