• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Problem with compiler directives
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Problem with compiler directives


  • Subject: Re: Problem with compiler directives
  • From: Robert Purves <email@hidden>
  • Date: Fri, 01 Apr 2011 20:34:57 +1300

Laurent Daudelin wrote:

> In my deployment configuration, I have the SDKROOT defined with a build setting condition:
>
> x86_64 = macosx10.6
> i386 = macosx10.5
> ppc = macosx10.5
>
> Now, when I build and omit the <NSToolbarDelegate>, when the compiler compiles the x86_64, it complains with a warning that my ToolbarController doesn't implement protocol "NSToolbarDelegate".
>
> So, to get around this annoying warning, I did this in my ToolbarController.h file:
>
> #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
> @interface ToolbarController : NSObject <NSToolbarDelegate>
> #else
> @interface ToolbarController : NSObject
> #endif
>
> I'm obviously missing something because when the compiler compiles the ppc binary, it gives me an error that it can't find protocol NSToolbarDelegate:

Try:

#if defined MAC_OS_X_VERSION_10_6 && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6

Robert P.

 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden

  • Follow-Ups:
    • Re: Problem with compiler directives
      • From: Laurent Daudelin <email@hidden>
    • Re: Problem with compiler directives
      • From: Laurent Daudelin <email@hidden>
    • Re: Problem with compiler directives
      • From: Laurent Daudelin <email@hidden>
  • Prev by Date: Embedded private frameworks
  • Next by Date: Re: Problem with compiler directives
  • Previous by thread: Embedded private frameworks
  • Next by thread: Re: Problem with compiler directives
  • Index(es):
    • Date
    • Thread