Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] using external/additional build tools

> > 
> > Hi all,
> > 
> > I use in a standard C++ projects (Makefile) an external
> > build tool, rootcint.
> > 
> > Compiling a project I get following error message:
> > 
> > rootcint -v4 -f SLBagDict.cc -c -p 
> > make[1]: rootcint: Command not found
> > make[1]: *** [SLBagDict.cc] Error 127
> > make: *** [all-recursive] Error 1
> > 
> > How can I set a folder in eclipse for external (additional)
> > build tools?
> > 
> 
> Builder can only be set on Project ... unfortunately.

Well, he's using a standard make project anyway, why is he not providing the
full tool-path in the makefile.

-----------------------------------------
RTCINT := <pathto_rootcint>/rootcint

%.o: %.cc
<TAB>$(RTCINT) <options> $<
-----------------------------------------

Or if he's meaning instead of make using rootcint, then the project options
allow to change the path and name of the make tool.


> 
> _______________________________________________
> cdt-dev mailing list
> cdt-dev@xxxxxxxxxxx
> http://dev.eclipse.org/mailman/listinfo/cdt-dev
> 

-- 
DSL Komplett von GMX +++ Supergünstig und stressfrei einsteigen!
AKTION "Kein Einrichtungspreis" nutzen: http://www.gmx.net/de/go/dsl


Back to the top