dotnet / corert

This repo contains CoreRT, an experimental .NET Core runtime optimized for AOT (ahead of time compilation) scenarios, with the accompanying compiler toolchain.
http://dot.net
MIT License
2.91k stars 508 forks source link

printf formatting strings #1189

Open jkotas opened 8 years ago

jkotas commented 8 years ago

Number of printf formatting strings (in particular in native\gc) iuse Windows-specific features in formatting strings (like %l) that won't work on Unix.

manu-st commented 8 years ago

Using %l on Unix is quite fine as far as I can tell. Do you mean the usage of Windows specific formatters such as %I64d?