Author Topic: is there any easy way??  (Read 3655 times)

neversion

  • Guest
is there any easy way??
« 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?

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7785
    • My Best Post
Re: is there any easy way??
« Reply #1 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
« Last Edit: August 05, 2007, 07:45:23 am by stahta01 »
C Programmer working to learn more about C++ and Git.
On Windows 10 64 bit and Windows 11 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline clyfish

  • Multiple posting newcomer
  • *
  • Posts: 26
Re: is there any easy way??
« Reply #2 on: August 05, 2007, 08:22:17 am »
bug 11243
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_:+/\\.-]+");

neversion

  • Guest
Re: is there any easy way??
« Reply #3 on: August 06, 2007, 08:36:16 am »
thank you!! :D :D

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