On Fri, Jun 6, 2008 at 9:35 AM, Andreas Höschler <[EMAIL PROTECTED]> 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. _______________________________________________ Discuss-gnustep mailing list [email protected] http://lists.gnu.org/mailman/listinfo/discuss-gnustep
