summaryrefslogtreecommitdiff
path: root/builddmc.bat
diff options
context:
space:
mode:
authorrpj <rpj>2004-07-01 07:32:10 +0000
committerrpj <rpj>2004-07-01 07:32:10 +0000
commit1660c9f40520f8af25206defffeff3f8c0fe0a50 (patch)
tree86465f3ed31832e2e437bbe16555805014fe5c38 /builddmc.bat
parentec10b068b42c9f80c312b75d5e4d15583cc07d2e (diff)
Initial support for Digital Mars Compiler
Diffstat (limited to 'builddmc.bat')
-rw-r--r--builddmc.bat9
1 files changed, 9 insertions, 0 deletions
diff --git a/builddmc.bat b/builddmc.bat
new file mode 100644
index 0000000..3edbaeb
--- /dev/null
+++ b/builddmc.bat
@@ -0,0 +1,9 @@
+; Build the pthreads library with the Digital Mars Compiler
+;
+set DMCDIR=c:\dm
+
+; RELEASE
+%DMCDIR%\bin\dmc -D_WIN32_WINNT -D_MT -DHAVE_CONFIG_H -I.;c:\dm\include -o+all -WD pthread.c user32.lib+kernel32.lib+wsock32.lib -L/impl -L/NODEBUG -L/SU:WINDOWS
+
+; DEBUG
+%DMCDIR%\bin\dmc -g -D_WIN32_WINNT -D_MT -DHAVE_CONFIG_H -I.;c:\dm\include -o+all -WD pthread.c user32.lib+kernel32.lib+wsock32.lib -L/impl -L/SU:WINDOWS