Re: need two compilation to achieve success
Tyler Roscoe <
tyler@...>
2009-06-01 05:18:18 GMT
> gmake[2]: *** No rule to make target in/libs/libAgathaUtils.so', needed
> by in/AgathaHud'. Stop.
Looks like your dependencies aren't set up correctly. You probably need
something like:
add_dependencies (AgathaHud AgathaUtils)
The first run does eventually get around to creating libAgahtaUtils.so,
so AgathaHud can find it during the second run.
These problems are often easier to diagnose/find if you don't do
parallel builds (no -j flag to make).
tyler
On Mon, Jun 01, 2009 at 07:27:09AM +0300, eial@... wrote:
>
> On Mon 01 Jun 0:01 2009 Tyler Roscoe wrote:
> > On Sun, May 31, 2009 at 11:56:18PM +0300, eial@... wrote:
> > > I've got a strange problem, when I try to compile a clean version of
> > > my program it fails without any explanation but if I try to compile
> > > again without running clean I compiles fine...
> >
> > We need way more information to help you. What platform? What compiler?
> > How exactly does it fail? What do you do to "compile a clean version"?
> >
> > tyler
> >
>
(Continue reading)