[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Cross platform development with gnustep make
From: |
Matt Rice |
Subject: |
Re: Cross platform development with gnustep make |
Date: |
Fri, 6 Jun 2008 10:00:49 -0700 |
On Fri, Jun 6, 2008 at 9:35 AM, Andreas Höschler <ahoesch@smartsoft.de> wrote:
> Hi all,
>
> after migrating from MacOSX 10.2 to MacOSX 10.5 I get a bunch of the
> following warnings (due to the newer gcc) when building frameworks with
> gnustep make.
>
> i686-apple-darwin9-gcc-4.0.1: -framework: linker input file unused because
> linking not done
> i686-apple-darwin9-gcc-4.0.1: AppKit: linker input file unused because
> linking not done
<snip
> ADDITIONAL_INCLUDE_DIRS += -framework AppKit -framework SRAppKit
> -framework SRDesign -framework SREnterprise -framework
its this line here, -framework isn't needed for include dirs the
framework version of -I is -F/path/to/foo.framework/..
(the parent directory of the foo.framework not the actual
foo.framework directory), by default their compiler adds -F for the
standard framework directories so you usually don't have to do
anything for ADDITIONAL_INCLUDE_DIRS for frameworks.