Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 5 Jan 2015 23:29:50 +0530
From:      Mayuresh Kathe <mayuresh@kathe.in>
To:        freebsd-questions@freebsd.org
Subject:   Re: working with obj-c under freebsd!
Message-ID:  <20150105175949.GA972@aio.kathe.in>
In-Reply-To: <20150105160823.GA1080@aio.kathe.in>
References:  <20150105160823.GA1080@aio.kathe.in>

next in thread | previous in thread | raw e-mail | index | archive | help
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 <Foundation/Foundation.h>
> 
> 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 <Foundation/Foundation.h>
>         ^
> 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. :)

~mayuresh




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20150105175949.GA972>