Code::Blocks Forums

User forums => Using Code::Blocks => Topic started by: neversion on August 05, 2007, 07:27:31 am

Title: is there any easy way??
Post by: neversion on August 05, 2007, 07:27:31 am
when i bulid a program, there is something wrong.
so the "bulid log" will help me find out the problem.
the begin of the log, there is "line number".
in dev-cpp, i can double click the line, and it will take me to the wrong code line  in my program.
but in code::block, after my double click, i got nothing. and i must go to my program to find the worng line.

is there any easy way? such as some plugin?
Title: Re: is there any easy way??
Post by: stahta01 on August 05, 2007, 07:42:56 am
It works for me, what Code::Blocks SVN are you using? What OS? What compiler?

Note: This is for the "Build Messages" Window not "Build Log" Window.

Tim S
Title: Re: is there any easy way??
Post by: clyfish on August 05, 2007, 08:22:17 am
bug 11243 (http://developer.berlios.de/bugs/?func=detailbug&bug_id=11243&group_id=5358)
When your source file path has non-english characters, the bug appears.
Now, your source file path must match the regex below.
const wxString Compiler::FilePathWithSpaces = _T("[][{}() \t#%$~A-Za-z0-9_:+/\\.-]+");
Title: Re: is there any easy way??
Post by: neversion on August 06, 2007, 08:36:16 am
thank you!! :D :D

after changing the path to all english charter, it's done!!