|
Revision 291, 376 bytes
(checked in by h3r3tic, 9 months ago)
|
added the missing zlib.d, implemented a library backend that loads data from the host app using imagehlp.dll's debugging functionality
|
| Line | |
|---|
| 1 |
# if need be, change this to use your build tool of preference |
|---|
| 2 |
fullbuild="build -full tango-user-dmd.lib zlib.lib " |
|---|
| 3 |
nolinkbuild="build -nolink" |
|---|
| 4 |
compile="dmd -c" |
|---|
| 5 |
|
|---|
| 6 |
if [ "$1" == "-debug" ]; then |
|---|
| 7 |
echo 'Debug Mode' |
|---|
| 8 |
let debug="-debug" |
|---|
| 9 |
fi |
|---|
| 10 |
|
|---|
| 11 |
if [ "$OS" == "Windows_NT" ]; then |
|---|
| 12 |
platform="win32" |
|---|
| 13 |
binSuffix=".exe" |
|---|
| 14 |
else |
|---|
| 15 |
platform="linux.X86" |
|---|
| 16 |
binSuffix="" |
|---|
| 17 |
fi |
|---|