Author Topic: Building problem on revision 3553  (Read 5540 times)

Offline dje

  • Lives here!
  • ****
  • Posts: 682
Building problem on revision 3553
« on: January 30, 2007, 11:17:01 pm »
Hi all !

I updated Codeblocks workspace today at revision 3553.

I followed the build instructions :
- CodeBlocks.cbp building
- ContribPlugins.workspace building

The first step fails at src target building; log :
Code
windres.exe -i "C:\Documents and Settings\Jerome\Mes documents\codeblocks\src\src\resources\resources.rc" -J rc -o .objs\2.6\src\resources\resources.res -O coff -IC:\DevSofts\wxWidgets-2.6.3\include -IC:\DevSofts\mingw\include 
gcc: C:\Documents: No such file or directory
gcc: and: No such file or directory
gcc: Settings\Jerome\Mes: No such file or directory
gcc: documents\codeblocks\src\src\resources\resources.rc: No such file or directory
gcc: warning: `-x c' after last input file has no effect
gcc: no input files
windres.exe: no resources
Process terminated with status 1 (0 minutes, 8 seconds)
1 errors, 1 warnings

My worspace path is : C:\Documents and Settings\Jerome\Mes documents\codeblocks
I am working on XP SP2 with gcc 3.4.5 (GNU windres 2.17.50 20060824)
I had no problem before.

Bug or bad configuration ?

Dje


Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5529
Re: Building problem on revision 3553
« Reply #1 on: January 31, 2007, 12:10:29 am »
for gcc/gdb we now use full paths, and windres (the resource compiler) can't deal with paths including spaces   -> move the project somewhere where there are no spaces.

Offline dje

  • Lives here!
  • ****
  • Posts: 682
Re: Building problem on revision 3553
« Reply #2 on: January 31, 2007, 11:16:19 am »
Quote
move the project somewhere where there are no spaces.
That's what I thought as last chance solution before creating this post.

Thanks for killing my doubts.

Dje