Reputation: 704
I'm using Eclipse with CDT for C++ development. However, I'm forced to use ASCII-symbols in paths to my source files to succesfully debug my programs. When source files are located in folders with non-English characters in their names, Eclipse gives an error:
Can't find a source file at "/home/\321\202\320\265\321\201\321\202/1.cpp" Locate the file or edit the source lookup path to include its location.
Is there any option that enables Eclipse to do proper Unicode processing?
Upvotes: 11
Views: 17598
Reputation: 2771
I know it is an old question. For me it was some weird behaviour in eclipse therefore starting eclipse like:
./eclipse -clean -clearPersistedState -refresh
removed the issue for me
Upvotes: 0
Reputation: 685
Here is your answer: http://www.eclipse.org/forums/index.php/t/57027/
I had the same problem and this solution worked for me.
Upvotes: 0
Reputation: 1783
Perhaps move your code to a workspace that sits at root, as in /workspace/projectName/src/1.cpp
If you can't find out exactly why and solve it, the next best thing is to circumvent...
Upvotes: 3