From: johanknol Date: Wed, 12 Feb 2003 14:23:04 +0000 (+0000) Subject: bccinst.txt is in sdccman.lyx now X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=d49870712cc5f80e91dc6b9065b9bf0402deb18b;p=fw%2Fsdcc bccinst.txt is in sdccman.lyx now KNOWNBUGS.txt is obsolete git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2250 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/doc/KNOWNBUGS.txt b/doc/KNOWNBUGS.txt deleted file mode 100644 index cd2d3057..00000000 --- a/doc/KNOWNBUGS.txt +++ /dev/null @@ -1,6 +0,0 @@ -SDCC known bugs ---------------- -$Id$ - -ds390 port: -* The linker does not yet supports segments >64k. diff --git a/doc/bccinst.txt b/doc/bccinst.txt deleted file mode 100644 index a808722a..00000000 --- a/doc/bccinst.txt +++ /dev/null @@ -1,18 +0,0 @@ -Building SDCC with Borland C++ under Windows - -1: From the sdcc directory, run the command "make -f Makefile.bcc". This -should regenerate all the .exe files in the bin directory except for -sdcdb.exe (which currently doesn't build under Borland C++). - -2: If you modify any source files and need to rebuild, be aware that the -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' -o -name '*.lib' -o -name '*.rul' \) -print -exec rm {} \; - -or on Windows NT/2000/XP from the command prompt with the commmand: - -del /s *.obj *.lib *.rul - -from the sdcc directory.