Displaying 2 results from an estimated 2 matches for "imhhho".
2011 Sep 01
3
[LLVMdev] [cfe-dev] Unicode path handling on Windows
...error
^
1 error generated.
Though, you should know, MBCS still has an issue;
E>bin\clang.exe -S 表はダメ文字\表はダメ文字.c
clang: error: no such file or directory: '表はダメ文字\表はダメ文字.c'
clang: error: no input files
Note, "表" is represented as "0x95 0x5C" in CP932.
In principle, IMHHHO;
- argv should be treated as "blackbox" byte stream.
- Don't assume "wmain(argc, wchar_t **argv)". mingw does not have
one. Then, argv must be presented as the default codepage.
- A few codepage (eg. cp932 Japanese shift jis) might contain
0x5C(\) in 2nd (leading) oct...
2011 Sep 01
0
[LLVMdev] [cfe-dev] Unicode path handling on Windows
...you should know, MBCS still has an issue;
>
> E>bin\clang.exe -S 表はダメ文字\表はダメ文字.c
> clang: error: no such file or directory: '表はダメ文字\表はダメ文字.c'
> clang: error: no input files
>
> Note, "表" is represented as "0x95 0x5C" in CP932.
>
> In principle, IMHHHO;
>
> - argv should be treated as "blackbox" byte stream.
> - Don't assume "wmain(argc, wchar_t **argv)". mingw does not have
> one. Then, argv must be presented as the default codepage.
Correction: I believe MinGW-w64 has a Unicode startup and thus support for...