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

root/tags/releases/0.99.8/lib/build-win32.bat

Revision 2866, 452 bytes (checked in by sean, 5 years ago)

The common, aggregate libraries are now all tagged by compiler:

tango-base-dmd.lib
tango-user-dmd.lib
tango-win32-dmd.lib

The component libraries are not tagged in this manner however, so some care may be necessary for a parallel install in this configuration. refs #660

  • Property svn:eol-style set to native
Line 
1 pushd ..\tango\sys\win32
2 copy /y Macros.di   Macros.d
3 copy /y Process.di  Process.d
4 copy /y Types.di    Types.d
5 copy /y UserGdi.di  UserGdi.d
6
7 dmd -I..\..\.. -c -inline -release -O Macros.d Process.d Types.d UserGdi.d
8 lib -c -n tango-win32-dmd.lib Macros.obj Process.obj Types.obj UserGdi.obj
9
10 move /y tango-win32-dmd.lib ..\..\..\lib\.
11
12 del Macros.d    Macros.obj
13 del Process.d   Process.obj
14 del Types.d     Types.obj
15 del UserGdi.d   UserGdi.obj
16 popd
Note: See TracBrowser for help on using the browser.