|
Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript |
D.gnu - BUG: dmd->gdc wrapper / compiling HTML sources
There seem to be a bug in the wrapper. Note: you have to apply at least the first patch I send earlier today to this list, otherwise other bugs will hide this one. Source file: http://svn.kuehne.cn/dstress/nocompile/html_entity_10.html correct: # > gdc -c html_entity_10.html ; echo $? # html_entity_10.html:3: HTML Error: invalid numeric character reference # 1 bug: # > dmd -c html_entity_10.html ; echo $? # 0 Thomas Nov 18 2004
Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Thomas Kuehne wrote:There seem to be a bug in the wrapper. Note: you have to apply at least the first patch I send earlier today to this list, otherwise other bugs will hide this one. Source file: http://svn.kuehne.cn/dstress/nocompile/html_entity_10.html correct: # > gdc -c html_entity_10.html ; echo $? # html_entity_10.html:3: HTML Error: invalid numeric character reference # 1 bug: # > dmd -c html_entity_10.html ; echo $? # 0 Thomas Nov 18 2004
David Friedman schrieb am Thu, 18 Nov 2004 09:05:30 -0500:The wrapper did not recognize '.html' files as _source_ files. Patch for this and some other bugs is attached. David Nov 18 2004
|