summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-09-26 17:13:06 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-09-26 17:13:06 +0000
commit324354eb346501eba52be24bfd9e0929144ac133 (patch)
tree87de187dc9e0f10f9b6468e85bf84e406bc5d05f
parentd589eda312a0cb9c2fa2fc5b0f8746f5cc16c387 (diff)
downloadcrawl-ref-324354eb346501eba52be24bfd9e0929144ac133.tar.gz
crawl-ref-324354eb346501eba52be24bfd9e0929144ac133.zip
Deleted obsolete build_nt.txt.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup@149 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/docs/build_nt.txt56
1 files changed, 0 insertions, 56 deletions
diff --git a/crawl-ref/docs/build_nt.txt b/crawl-ref/docs/build_nt.txt
deleted file mode 100644
index c6c7373eae..0000000000
--- a/crawl-ref/docs/build_nt.txt
+++ /dev/null
@@ -1,56 +0,0 @@
-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 enumsize = 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
-----------------------------------------------
-* must alter the Tool information for CppCompile to
- 'understand' .cc extensions (in Advanced Tools Settings)
-* include libw32c.cc as source; ignore other lib*.cc files
-* define macro WIN32CONSOLE
-* MUST build with "Unsigned Characters" OFF
-* MUST build with "Allocate Enums as Ints" ON
-* MUST set search directories so that the Crawl Source directory
- is searched before the BC5\INCLUDE directory.
-* target architecture should probably be 486 machines
- (see note for VACPP)
-* helps to set Warnings to "Selected Subset only" or you
- get ZILLIONS of warnings. I usually turn off all the
- "Code Efficiency" warnings. :)
-* for best results, specify following in target expert:
- - Win32 Console Application (.exe)
- - _Everything_ unchecked
- - Static linking
-
-Notes for building crawl with mingw
-------------------------------------------
-* In makefile specify makefile.w32. Other notes:
- - make sure your path includes mingw binaries
- - set LIB to your mingw lib directory
- - set INCLUDE to your mingw include directory
- - the makefile defines WIN32CONSOLE like above
- - -Wall will generate a fair number of warnings
-* Tested on Win98 and Win2000.
-* Current build is not statically linked.
-* See notes above for target arch code gen switches
-* This is currently tested only with 2.95.2
- I anticipate no problems with mingw 3.0.1 but
- haven't had time to update yet.
-* This also currently doesn't statically link
-
-