User forums > Nightly builds
The 28 January 2007 build is out.
killerbot:
@
indigo0086
skirby
pasgui
Someone mentioned a cause, he had '[' and/or ']' in his path. Our regular expressions used for the parsing of the compiler output didn't support that. I am working on a fix, should be available this evening. I will write a special post about it.
Could you check if you had one of the following characters in your path (to the project or source files) :
(
)
{
}
[
]
gd_on:
Small bug I discovered with this nightly but probably not new.
Here a small C program, in a project (test.cbp, under windows XP and Win 2000) :
#include <stdio.h>
#include <stdlib.h>
int ii=11 ;
void sub1 ( )
{
int iiloc ;
iiloc = 2*ii ;
printf("%d %d\n",ii,iiloc) ;
}
int main()
{
printf("Hello world!\n");
sub1() ;
return 0;
}
This program works but :
If within sub1 I right click on the variable ii then click on Find declaration of ii, it works: the cursor is on ii declaration.
But if I right click on iiloc (in iiloc = 2*ii or within the printf), I obtain a message declaration "Warning Not found : iiloc".
On a more complex project, even some global variables are not found (but not all).
gd_on
skirby:
--- Quote from: killerbot on January 30, 2007, 11:05:16 am ---@
indigo0086
skirby
pasgui
Someone mentioned a cause, he had '[' and/or ']' in his path. Our regular expressions used for the parsing of the compiler output didn't support that. I am working on a fix, should be available this evening. I will write a special post about it.
Could you check if you had one of the following characters in your path (to the project or source files) :
(
)
{
}
[
]
--- End quote ---
Hello killerbot,
You are absolutly right.
In fact, I have a # in my folder name.
If I remove it, it works :D
killerbot:
woops, another one that add to the list
skirby:
You can also add the character ~ and =
I suppose there are more character which cause problem.
More, if the path contains an $ character, I have the following error message:
--- Quote ----------------- Build: Debug in Test ---------------
Compiling: main.c
mingw32-gcc.exe: D:\Test\main.c: No such file or directory
mingw32-gcc.exe: no input files
Process terminated with status 1 (0 minutes, 0 seconds)
0 errors, 0 warnings
--- End quote ---
The real folder name is: D:\Test$1\
I hope you could correct it.
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version