no gc
[fw/sdcc] / doc / bccinst.txt
1 Building SDCC with Borland C++ under Windows
2
3 1: Build SDCC under Cygwin as documented in cygwininst.txt (this is
4 necessary in order to run all the necessary configuration steps).
5
6 2: From the sdcc directory, run the command "make -f Makefile.bcc". This
7 should regenerate all the .exe files in the bin directory except for
8 sdcdb.exe (which currently doesn't build under Borland C++).
9
10 3: If you modify any source files and need to rebuild, be aware that the
11 dependancies may not be correctly calculated. The safest option is to
12 delete all .obj files and run the build again. From a Cygwin BASH
13 prompt, this can easily be done with the commmand:
14
15  'find . -name "*.obj" -print | xargs rm'
16
17 from the sdcc directory.