Project Home
Project Home
Trackers
Trackers
Documents
Documents
Wiki
Wiki
Discussion Forums
Discussions
Project Information
Project Info
Forum Topic - Problem building project: (4 Items)
   
Problem building project  
I just installed QNX on this machine, and imported an already existing project. Now when I click build, I get a warning


Error launching external scanner info generator (gcc -E -P -v -dD C:/QNX632/ide4-workspace/.metadata/.plugins/org.
eclipse.cdt.make.core/specs.c)		


Also the console displays 

make -k all 
make: *** No rule to make target `all'. 


How can I fix this? Any suggestions much appreciated
Re: Problem building project  
The scanner info error can be ignored, the other one is because you don't have make on top level or you don't have 
target all

On 09/01/2011 07:48 AM, Julio Arellano wrote:
> I just installed QNX on this machine, and imported an already existing project. Now when I click build, I get a 
warning
> 
> 
> Error launching external scanner info generator (gcc -E -P -v -dD C:/QNX632/ide4-workspace/.metadata/.plugins/org.
eclipse.cdt.make.core/specs.c)		
> 
> 
> Also the console displays 
> 
> make -k all 
> make: *** No rule to make target `all'. 
> 
> 
> How can I fix this? Any suggestions much appreciated
> 
> 
> 
> _______________________________________________
> 
> QNX Momentics Getting Started
> http://community.qnx.com/sf/go/post88573
> 
Re: Problem building project  
Alright, so how do I check wether I have make on top level? I realize I'm perhaps asking a stupid question, but I'm new 
at this. Thanks for the help. 
Re: Problem building project  
> Alright, so how do I check wether I have make on top level? I realize I'm 
> perhaps asking a stupid question, but I'm new at this. Thanks for the help. 


Also my makefile looks like this 

LIST=CPU
ifndef QRECURSE
QRECURSE=recurse.mk
ifdef QCONFIG
QRDIR=$(dir $(QCONFIG))
endif
endif
include $(QRDIR)$(QRECURSE)


Is this okay?