Hi,
I have a problem which I figure must be fairly common, although I found no
reference to it anywhere. I think it must be common because the SCons manual
says they fixed it. [1] Anyway...
Let's say I have two directories, "src" and "include". I place main.c in src
and inc.h in include. main.
Simon Perreault wrote:
> Hi,
>
> I have a problem which I figure must be fairly common, although I found no
> reference to it anywhere. I think it must be common because the SCons manual
> says they fixed it. [1] Anyway...
>
> Let's say I have two directories, "src" and "include". I place main.c in
On March 30, 2005 10:14, Gary V. Vaughan wrote:
> AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include
Sure, this fixes the problem given in my example. But I can't do that because
of this:
> > The quick fix is to add the location of inc.h, prefixed with
> > $(top_builddir). However
Hi Simon,
* Simon Perreault wrote on Wed, Mar 30, 2005 at 04:13:23PM CEST:
>
> I have a problem which I figure must be fairly common, although I found no
> reference to it anywhere. I think it must be common because the SCons manual
> says they fixed it. [1] Anyway...
Looks like they traded di
On March 30, 2005 10:44, Ralf Wildenhues wrote:
> > #include "../include/inc.h"
>
> which is not portable, by the way (but I can see if you don't care about
> that part of the world).
Why do you say that? That code is being ported from Microsoft's compiler, and
I guess that if it works there and
On Wed, 30 Mar 2005, Simon Perreault wrote:
On March 30, 2005 10:44, Ralf Wildenhues wrote:
#include "../include/inc.h"
which is not portable, by the way (but I can see if you don't care about
that part of the world).
Why do you say that? That code is being ported from Microsoft's compiler,
and
I
* Simon Perreault wrote on Wed, Mar 30, 2005 at 06:13:19PM CEST:
> On March 30, 2005 10:44, Ralf Wildenhues wrote:
> > > #include "../include/inc.h"
> >
> > which is not portable, by the way (but I can see if you don't care about
> > that part of the world).
>
> Why do you say that? That code is b