gbdk-releases/sdcc/doc/bccinst.txt

18 lines
714 B
Plaintext
Raw Permalink Normal View History

2015-01-10 16:25:07 +01:00
Building SDCC with Borland C++ under Windows
1: Build SDCC under Cygwin as documented in cygwininst.txt (this is
necessary in order to run all the necessary configuration steps).
2015-01-10 16:25:09 +01:00
2: From the sdcc directory, run the command "make -f Makefile.bcc". This
2015-01-10 16:25:07 +01:00
should regenerate all the .exe files in the bin directory except for
sdcdb.exe (which currently doesn't build under Borland C++).
2015-01-10 16:25:09 +01:00
3: If you modify any source files and need to rebuild, be aware that the
2015-01-10 16:25:07 +01:00
dependancies may not be correctly calculated. The safest option is to
delete all .obj files and run the build again. From a Cygwin BASH
prompt, this can easily be done with the commmand:
'find . -name "*.obj" -print | xargs rm'
from the sdcc directory.