Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [ptp-user] linux 64 on galileo remote build

Fabrizio,

Do you mean that you're not seeing any error markers in your editor? Can any of the RDT developers help with this problem?

Greg


On Mar 25, 2010, at 7:24 AM, Fabrizio Fabbri wrote:

> Hi.
> 
> I'm using the release version of the plug ins.
> 
> I setup a simple C++ remote make file project with a datastore/index/remote build services.
> 
> My problem is that eclipse can't parse the compiler error because the output is missing.
> 
> I have a 
> test.cpp 
> 
> and then I created a makefile like that:
> 
> ##############################
> all: test
> 
> test: test.o
>     g++ -o test test.o
> 
> test.o: test.cpp
>     g++ -c test.cpp 
> ##############################
> 
> 
> When I hit compile it compile correctly with:
> make all;exit
> 
> g++ -c test.cpp 
> g++ -o test test.o
> > Shell Completed (exit code = 0)
> 
> 
> but as example if I introduce a syntax error on the source file the result is:
> make all;exit
> 
> g++ -c test.cpp 
> test.cpp: In function 'int main(int, char**)':
> make: *** [test.o] Error 1
> > Shell Completed (exit code = 2)
> 
> 
> In that way I don't have any error parsing facility.
> 
> 
> Is that working as designed?
> 
> how I can fix that problem?
> 
> 
> Kindest Regards _______________________________________________
> ptp-user mailing list
> ptp-user@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/ptp-user



Back to the top