You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by bu...@apache.org on 2003/01/22 23:06:44 UTC

DO NOT REPLY [Bug 16345] New: - ilasm task acts incorrectly with more than one input file

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=16345>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=16345

ilasm task acts incorrectly with more than one input file

           Summary: ilasm task acts incorrectly with more than one input
                    file
           Product: Ant
           Version: 1.5.1
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Critical
          Priority: Other
         Component: Optional Tasks
        AssignedTo: ant-dev@jakarta.apache.org
        ReportedBy: mschilling@amberpoint.com


Consider the following invocation of ilasm:

        <ilasm debug="true" 
            outputFile="Test.dll"
            srcDir="src/Test"
            targetType="library"
        />

If src/Test contains more than one .il file, this should assemble them all into
a single DLL.  In fact, it loops though the .il files, assembling each one into
Test.dll.  The final result is a Test.dll that contains only the contents of the
last file.

A second problem is that no dependency checking is done.  Thus, with a single
input file, the produced DLL is correct but it's built every time ANT runs,
regardless of whether it needs rebuilding.

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>