diff options
author | Mike Stump <mrs@apple.com> | 2007-04-13 17:29:27 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 2007-04-13 17:29:27 +0000 |
commit | c40ce8f320df0b2cf23426a9c3da37df10dde3d7 (patch) | |
tree | c21820976b12cdda5c2b98bc041656a9e1d80487 /gcc/config/darwin-c.c | |
parent | d6a7a3be7489a8a89f352cc787fa6dbbe73ba85a (diff) | |
download | gcc-c40ce8f320df0b2cf23426a9c3da37df10dde3d7.zip gcc-c40ce8f320df0b2cf23426a9c3da37df10dde3d7.tar.gz gcc-c40ce8f320df0b2cf23426a9c3da37df10dde3d7.tar.bz2 |
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
Diffstat (limited to 'gcc/config/darwin-c.c')
-rw-r--r-- | gcc/config/darwin-c.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/config/darwin-c.c b/gcc/config/darwin-c.c index dc03a9d..0b3e820 100644 --- a/gcc/config/darwin-c.c +++ b/gcc/config/darwin-c.c @@ -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. */ |