Project Home
Project Home
Trackers
Trackers
Documents
Documents
Wiki
Wiki
Discussion Forums
Discussions
Project Information
Project Info
Forum Topic - Build Woes: (5 Items)
   
Build Woes  
I'm cleaning a project (does this during build as well) and this is what I get:

C:\QNX632\host\win32\x86\usr\bin\make clean --file=C:/DOCUME~1/Kevin/LOCALS~1/Temp/QMakefile125901260707858498.tmp 
C:/QNX632/host/win32/x86/usr/bin/make -j 1 -Cnto -fMakefile clean 
make[1]: Entering directory `C:/ARI_II/some_company/Code/changes/login/nto'
C:/QNX632/host/win32/x86/usr/bin/make -j 1 -Cppc -fMakefile clean 
make[2]: Entering directory `C:/ARI_II/some_company/Code/changes/login/nto/ppc'
C:/QNX632/host/win32/x86/usr/bin/make -j 1 -Ca.be -fMakefile clean 
make[3]: Entering directory `C:/ARI_II/some_company/Code/changes/login/nto/ppc/a.be'
C:/QNX632/host/win32/x86/usr/bin/rm -f  liblogin.a  *.pinfo *.o *.err *.map mapfile *.sym *.i   
make[3]: Leaving directory `C:/ARI_II/some_company/Code/changes/login/nto/ppc/a.be'
C:/QNX632/host/win32/x86/usr/bin/make -j 1 -Ca.be.g -fMakefile clean
make[3]: Entering directory `C:/ARI_II/some_company/Code/changes/login/nto/ppc/a.be.g'
C:/QNX632/host/win32/x86/usr/bin/rm -f  liblogin_g.a  *.pinfo *.o *.err *.map mapfile *.sym *.i   
make[3]: Leaving directory `C:/ARI_II/some_company/Code/changes/login/nto/ppc/a.be.g'
make[2]: Leaving directory `C:/ARI_II/some_company/Code/changes/login/nto/ppc'
C:/QNX632/host/win32/x86/usr/bin/make -j 1 -Cx86 -fMakefile clean
make[2]: Entering directory `C:/ARI_II/some_company/Code/changes/login/nto/x86'
C:/QNX632/host/win32/x86/usr/bin/make -j 1 -Ca -fMakefile clean 
make[3]: Entering directory `C:/ARI_II/some_company/Code/changes/login/nto/x86/a'
C:/QNX632/host/win32/x86/usr/bin/rm -f  liblogin.a  *.pinfo *.o *.err *.map mapfile *.sym *.i   
make[3]: Leaving directory `C:/ARI_II/some_company/Code/changes/login/nto/x86/a'
C:/QNX632/host/win32/x86/usr/bin/make -j 1 -Ca.g -fMakefile clean
Makefile:1: ../../../common.mk

: Invalid argument
make[3]: Entering directory `C:/ARI_II/some_company/Code/changes/login/nto/x86/a.g'
make[3]: *** No rule to make target `../../../common.mk
make[3]: Leaving directory `C:/ARI_II/some_company/Code/changes/login/nto/x86/a.g'

'.  Stop.
make[2]: Leaving directory `C:/ARI_II/some_company/Code/changes/login/nto/x86'
make[2]: *** [clean] Error 2
make[1]: *** [clean] Error 2
make[1]: Leaving directory `C:/ARI_II/some_company/Code/changes/login/nto'
C:\QNX632\host\win32\x86\usr\bin\make: *** [clean] Error 2


My difficulty is in the fact that the "changes/login/nto/x86/a" worked fine but the "changes/login/nto/x86/a.g" won't.

The make files in the a and a.g are identical.

Why this all of a sudden?

Thanks
Kevin
Re: Build Woes  
> 
> The make files in the a and a.g are identical.
> 

They aren't identical, I was hit with the invisible killer....windows end of line delimiters....the misery a checkbox 
can cause....

Fixed.

Kevin
Re: Build Woes  
That raises a pet peeve of mine - programmer's editors that try to hide the fact that a file does not have native 
linefeed markers...

Just the facts, man! B-)

Kevin Stallard wrote:
>> The make files in the a and a.g are identical.
>>
> 
> They aren't identical, I was hit with the invisible killer....windows end of line delimiters....the misery a checkbox 
can cause....
> 
> Fixed.
> 
> Kevin
> 
> 
> 
> 
> _______________________________________________
> 
> General
> http://community.qnx.com/sf/go/post42447
> 

-- 
cburgess@qnx.com
Re: Build Woes  
Hi, Colin, Kevin,

FYI:  The IDE has a handy menu action to resolve such problems:  "File
-> Convert Line Delimiters To."

Of course, you still need to discover that you have this problem, in the
first place.

cW

On Mon, 2009-11-23 at 20:44 -0500, Colin Burgess wrote:

> That raises a pet peeve of mine - programmer's editors that try to hide the fact that a file does not have native 
linefeed markers...
> 
> Just the facts, man! B-)
> 
> Kevin Stallard wrote:
> >> The make files in the a and a.g are identical.
> >>
> > 
> > They aren't identical, I was hit with the invisible killer....windows end of line delimiters....the misery a 
checkbox can cause....
> > 
> > Fixed.
> > 
> > Kevin
> > 
> > 
> > 
> > 
> > _______________________________________________
> > 
> > General
> > http://community.qnx.com/sf/go/post42447
> > 
> 


________________________________________________________________________

Christian W. Damus
Software Developer, IDE Team
QNX Software Systems
Re: Build Woes  
Yes, that's my peeve.  I can simply use textto, tr, or even the IDE(!)
to convert, but when the editor silently hides the issue, it can lead
to things like make getting upset.

vim does it, but at least it marks it as "[dos]" at the bottom of the
screen...

Christian Damus wrote:
> Hi, Colin, Kevin,
> 
> FYI:  The IDE has a handy menu action to resolve such problems:  "File
> -> Convert Line Delimiters To."
> 
> Of course, you still need to discover that you have this problem, in the
> first place.
> 
> cW
> 
> On Mon, 2009-11-23 at 20:44 -0500, Colin Burgess wrote:
> 
>> That raises a pet peeve of mine - programmer's editors that try to hide the fact that a file does not have native 
linefeed markers...
>>
>> Just the facts, man! B-)
>>
>> Kevin Stallard wrote:
>>>> The make files in the a and a.g are identical.
>>>>
>>> They aren't identical, I was hit with the invisible killer....windows end of line delimiters....the misery a 
checkbox can cause....
>>>
>>> Fixed.
>>>
>>> Kevin
>>>
>>>
>>>
>>>
>>> _______________________________________________
>>>
>>> General
>>> http://community.qnx.com/sf/go/post42447
>>>
> 
> 
> ________________________________________________________________________
> 
> Christian W. Damus
> Software Developer, IDE Team
> QNX Software Systems
> 
> 
> 
> 
> _______________________________________________
> 
> General
> http://community.qnx.com/sf/go/post42466
> 

-- 
cburgess@qnx.com