[#364] | project: compiler | priority: high | category: bug | |
---|---|---|---|---|
submitter | assigned to | status | date submitted | |
Stephane | Nikolay | fixed | 2004-09-28 11:27:39.0 | |
subject | Missing quotes in generated .IL file | |||
code |
.assembly obj... .module obj\Hello.exe .class ... |
|||
what happened | error: syntax error at token '\' in: .module obj\Hello.exe |
|||
what expected | ilasm generates no error | |||
[back to overview] |
Nikolay edited on 2004-10-07 11:48:37.0 |
It only happens when using the -o option to specify the name of the output assembly. I fixed it to understand qualified names, like in -o build/dotnet/MyAssembly, which would place MyAssembly.il in ./build/dotnet/.
I also fixed msil.jar to put quotes around the module definition, because it caused problems with strange assembly names. |