summaryrefslogtreecommitdiffstats
path: root/stone_soup/crawl-ref/build_nt.txt
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-09-18 15:08:25 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-09-18 15:08:25 +0000
commita4d4f3ecccb29c3f5fc1ce55579119106c399911 (patch)
tree5677ea04b4dfdadd961c01ba3baf7502f8d6e0d0 /stone_soup/crawl-ref/build_nt.txt
parent571501e1135989d3b9dc44e3d332562a7cf78b35 (diff)
downloadcrawl-ref-a4d4f3ecccb29c3f5fc1ce55579119106c399911.tar.gz
crawl-ref-a4d4f3ecccb29c3f5fc1ce55579119106c399911.zip
Updated stone_soup-0.1b1 tag to include fix for Poison Arrow of Doom.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/tags/stone_soup-0.1b1@49 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'stone_soup/crawl-ref/build_nt.txt')
-rw-r--r--stone_soup/crawl-ref/build_nt.txt41
1 files changed, 41 insertions, 0 deletions
diff --git a/stone_soup/crawl-ref/build_nt.txt b/stone_soup/crawl-ref/build_nt.txt
new file mode 100644
index 0000000000..4b5b4645ab
--- /dev/null
+++ b/stone_soup/crawl-ref/build_nt.txt
@@ -0,0 +1,41 @@
+Notes for building crawl with VACPP
+-----------------------------------
+* when including source, make sure source type is
+ defined to be 'cpp' - VACPP doesn't know how to
+ handle .cc extensions.
+* include libw32c.cc as a source object;
+ ignore the other lib*.cc files
+* define the macro WIN32CONSOLE
+* MUST build with signedchars = yes
+* MUST build with emumsize = 4
+* target architecture should probably be 486 machines.
+
+ According to jmf, targetting Pentium class machines
+ implies Pentium-specific instructions which are
+ actually slower on PPro/PII/PIII machines.
+
+Other than this, it's pretty straightforward.
+
+
+Notes for building crawl with Borland C++ 5.01
+----------------------------------------------
+Don't bother. Borland C++ 5.01 has a broken
+STL library that requires manual patching to get
+around. Use the free commandline tools from Borland
+instead.
+
+Notes for building crawl with Borland C++ 5.5 free commandline tools
+--------------------------------------------------------------------
+* make sure your ilink32.cfg contains entries for at least lib and lib\psdk,
+ for example:
+ -L"g:\bcc55\lib;g:\bcc55\lib\psdk"
+ (This may already be done if you've set up Borland for use with VIDE)
+
+* cd to the source directory and edit 'makefile'
+ * set MAKEFILE=makefile.bor
+ * comment out the OTHER=-j2 line
+ * remove EXTRA_FLAGS=... from command (set flags in makefile.bor instead)
+
+* finally, type 'make all' ('make' may default to 'make debug' which isn't
+ quite supported yet using the free tools)
+