discuss-gnustep
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Great Moments in Mystifying Compiler Messages...


From: Citizen Jimserac
Subject: Great Moments in Mystifying Compiler Messages...
Date: Wed, 15 Aug 2012 12:27:45 -0700 (PDT)
User-agent: G2/1.0

Am compiling a ".m" and have a bunch of include files ...

All four of these includes are in the /home/wuming/gnustep/core/gui/
Headers/AppKit direcotry

#import <AppKit/NSApplication.h>
#import <AppKit/NSImage.h>
#import <AppKit/NSPasteboard.h>
#import <AppKit/NSErrors.h>

Compiler finds the first 3 no problem but errors out on the last with
a
"fatal error"   "file not found" on the NSErrors.h

But... if I change to an explicit path in the import for it... as in
(see below)

#import <AppKit/NSApplication.h>
#import <AppKit/NSImage.h>
#import <AppKit/NSPasteboard.h>
#import "/home/wuming/gnustep/core/gui/Headers/AppKit/NSErrors.h"

It find it no problem and the compile proceeds merrily along (!!)

What am I missing ??

Thanks
J.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]