Check-in [c48ba67854]
Not logged in
Overview
SHA1 Hash:c48ba678540c325ddc2754cbbf919b27bc1635f3
Date: 2010-11-08 17:05:28
User: kinaba
Comment:Changed release build script to ignore d2stacktrace.
Timelines: family | ancestors | descendants | both | trunk
Downloads: Tarball | ZIP archive
Other Links: files | file ages | manifest
Tags And Properties
Changes

Modified build.bat from [89e64358f6690364] to [a3b137d66c9ae5c5].

1 @setlocal ENABLEDELAYEDEXPANSION 1 @setlocal ENABLEDELAYEDEXPANSION 2 @set ARGS= 2 @set ARGS= 3 @for %%I in (main.d polemy\*.d d2stacktrace\*.d) do @set ARGS=!ARGS! %%I | 3 @for %%I in (main.d polemy\*.d) do @set ARGS=!ARGS! %%I 4 @if not exist bin mkdir bin 4 @if not exist bin mkdir bin 5 @echo dmd -ofbin\polemy.exe -O -release -inline %ARGS% 5 @echo dmd -ofbin\polemy.exe -O -release -inline %ARGS% 6 @dmd -ofbin\polemy.exe -O -release -inline %ARGS% 6 @dmd -ofbin\polemy.exe -O -release -inline %ARGS%

Modified readme.txt from [f8fe981026f3c9cf] to [69c8df99d191e188].

1 ----------------------------------------------------------------------------- 1 ----------------------------------------------------------------------------- 2 Polemy 0.1.0 2 Polemy 0.1.0 3 by k.inaba (www.kmonos.net) 3 by k.inaba (www.kmonos.net) 4 Nov 7, 2010 | 4 Nov 8, 2010 5 ----------------------------------------------------------------------------- 5 ----------------------------------------------------------------------------- 6 6 7 7 8 8 9 <<How to Build>> 9 <<How to Build>> 10 10 11 - Install DMD 11 - Install DMD 12 http://www.digitalmars.com/d/2.0/changelog.html 12 http://www.digitalmars.com/d/2.0/changelog.html 13 Version 2.050 is recommended. Older and/or newer version may not work. 13 Version 2.050 is recommended. Older and/or newer version may not work. 14 14 15 - Build 15 - Build 16 (for Poseidon IDE users) Open the project and build < 17 (for Windows) Run build.bat 16 (for Windows) Run build.bat 18 (for Unix) Run build.sh 17 (for Unix) Run build.sh 19 or use your favorite build tools upon main.d and polemy/*.d. 18 or use your favorite build tools upon main.d and polemy/*.d. 20 19 21 Then you will get the executable "polemy" in the "bin" directory. 20 Then you will get the executable "polemy" in the "bin" directory. 22 21 23 22 ................................................................................................................................................................................ 26 25 27 d2stacktrace/* 26 d2stacktrace/* 28 27 29 is written by Benjamin Thaut and licensed under 2-clause BSD License. 28 is written by Benjamin Thaut and licensed under 2-clause BSD License. 30 See http://3d.benjamin-thaut.de/?p=15 for the detail. 29 See http://3d.benjamin-thaut.de/?p=15 for the detail. 31 30 32 (this package is used only for enabling stack-traces during printing excepti 31 (this package is used only for enabling stack-traces during printing excepti 33 if it is not needed, please just simply remove the sources from your build) | 32 it is not used for release builds.) 34 33 35 polemy/* 34 polemy/* 36 main.d 35 main.d 37 36 38 All the other parts are written by Kazuhiro Inaba and 37 All the other parts are written by Kazuhiro Inaba and 39 licensed under NYSL 0.9982 ( http://www.kmonos.net/nysl/ ). 38 licensed under NYSL 0.9982 ( http://www.kmonos.net/nysl/ ). 40 39 41 40 42 41 43 <<How to Use>> 42 <<How to Use>> 44 43 45 I don't know. 44 I don't know.