Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 2606

Show
Ignore:
Timestamp:
10/03/07 01:54:07 (1 year ago)
Author:
kris
Message:

removed DisplayWriter? reference

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/install/windows/build_tango.d

    r2605 r2606  
    22import tango.io.FileScan; 
    33import tango.io.Stdout; 
    4 import tango.io.protocol.DisplayWriter; 
    54import tango.sys.Process; 
    65import tango.text.Util; 
     
    1312 
    1413    auto    outf = new FileConduit( "tango.lsp", FileConduit.ReadWriteCreate ); 
    15     auto    link = new DisplayWriter( outf ); 
    1614    auto    scan = new FileScan; 
    1715    char[]  path = "..\\tango"; 
     
    2119        path = args[1] ~ "\\tango"; 
    2220 
    23     link( "-c -n -p256\ntango.lib\n"c ); 
     21    outf.write ("-c -n -p256\ntango.lib\n"); 
    2422    foreach(file; scan( path, ".d" ).files ) 
    2523    { 
     
    3028              "-of" ~ objname( file ) ~ " " ~ 
    3129              file.toUtf8 ); 
    32         link( temp )( '\n' ); 
     30        outf.write(temp), outf.write('\n'); 
    3331        list ~= " " ~ temp; 
    3432        delete temp; 
    3533    } 
    36     link.flush; 
    3734    outf.close; 
    3835    exec( "lib @tango.lsp" );