[Issue 13493] DMD fails to open files with non-ASCII characters on Windows

via Digitalmars-d-bugs digitalmars-d-bugs at puremagic.com
Sun Sep 21 08:44:47 PDT 2014


https://issues.dlang.org/show_bug.cgi?id=13493

--- Comment #6 from Vladimir Panteleev <thecybershadow at gmail.com> ---
(In reply to Sönke Ludwig from comment #0)
> DMD only accepts files that contain ASCII characters (maybe even LATIN1). 
> Everything else results in an error message similar to this:
> 
> $ dmd тєѕт.d
> Error: cannot read file ????.d
> 
> Reproducible with any Cyrillic character.

With DMD 2.066:

> dmd тест.d
Error: invalid file name '.d'

> dmd "тест.d"
(works, and creates тест.exe)

So, I guess it will still accept characters in the user's code page, as long as
they are quoted.

--


More information about the Digitalmars-d-bugs mailing list