From owner-freebsd-questions@FreeBSD.ORG Wed Jan 7 08:35:05 2015 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4BE363A7 for ; Wed, 7 Jan 2015 08:35:05 +0000 (UTC) Received: from ipmail06.adl2.internode.on.net (ipmail06.adl2.internode.on.net [150.101.137.129]) by mx1.freebsd.org (Postfix) with ESMTP id D914B665B7 for ; Wed, 7 Jan 2015 08:35:04 +0000 (UTC) Received: from ppp14-2-13-162.lns21.adl2.internode.on.net (HELO leader.local) ([14.2.13.162]) by ipmail06.adl2.internode.on.net with ESMTP; 07 Jan 2015 18:59:55 +1030 Message-ID: <54ACEE80.7050706@ShaneWare.Biz> Date: Wed, 07 Jan 2015 18:59:52 +1030 From: Shane Ambler User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 MIME-Version: 1.0 To: Mayuresh Kathe , freebsd-questions@freebsd.org Subject: Re: working with obj-c under freebsd! References: <20150105160823.GA1080@aio.kathe.in> <20150105175949.GA972@aio.kathe.in> <20150105184133.GA1430@aio.kathe.in> <20150105184832.GA1590@aio.kathe.in> In-Reply-To: <20150105184832.GA1590@aio.kathe.in> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 08:35:05 -0000 On 06/01/2015 05:18, Mayuresh Kathe wrote: > On Tue, Jan 06, 2015 at 12:11:34AM +0530, Mayuresh Kathe wrote: >> On Mon, Jan 05, 2015 at 11:29:50PM +0530, Mayuresh Kathe wrote: >>> On Mon, Jan 05, 2015 at 09:38:24PM +0530, Mayuresh Kathe wrote: >>>> i had asked this question before and was advised to install >>>> the gnustep framework before trying out obj-c development >>>> under freebsd. >>>> >>>> finally got the whole thing installed and tried to compile >>>> the following simple objective-c program. >>>> >>>> #import >>>> >>>> int main (int argc, const char * argv[]) >>>> { >>>> @autoreleasepool { >>>> NSLog (@"Programming is fun!"); >>>> } >>>> return 0; >>>> } >>>> >>>> the compiler options used were as below; >>>> clang -fobjc-arc main.m -o prog1 >>>> >>>> the compiler threw up the following error; >>>> main.m:3:9: fatal error: 'Foundation/Foundation.h' file not found >>>> #import >>>> ^ >>>> 1 error generated. >>>> >>>> what can i do to get the above resolved? >>> >>> i found the location of that file to be at; >>> /usr/local/GNUstep/System/Library/Headers/Foundation/Foundation.h >>> >>> should i be pointing the LD_LIBRARY_PATH variable to that point too? >>> don't know if that would work, gnustep and obj-c do have their own >>> way of setting things up and getting things done. :) >> >> okay, got it to compile and work, find below contents of GNUmakefile; >> GNUSTEP_MAKEFILES=/usr/local/GNUstep/System/Library/Makefiles >> include $(GNUSTEP_MAKEFILES)/common.make >> TOOL_NAME = mainapp >> mainapp_OBJC_FILES = main.m >> include $(GNUSTEP_MAKEFILES)/tool.make >> >> put it in the same directory as main.m and just issue gmake. >> remember to edit config.make found at; >> /usr/local/GNUstep/System/Library/Makefiles/ >> to reflect the actual location of clang tools, i.e. /usr/bin/ > > also remember to set the environment variable GNUSTEP_SYSTEM_TOOLS to > point to /usr/local/GNUstep/System/Tools > > ~mayuresh You might want to look at /usr/local/GNUstep/System/Makefiles/GNUstep.csh or /usr/local/GNUstep/System/Makefiles/GNUstep.sh They read in /usr/local/GNUstep/GNUstep.conf and ~/.GNUstep.conf for settings. -- FreeBSD - the place to B...Software Developing Shane Ambler