fpc/rtl
1998-08-05 21:47:21 +00:00
..
amiga * bugfix of findfirst, was not convberting correctl backslahes 1998-08-04 13:37:10 +00:00
atari * hmmm... can't remember! :(... 1998-07-15 12:11:59 +00:00
dos applied bugfix from maillist to fsearch 1998-08-05 21:01:50 +00:00
i386 reverted to non-assmebler version, florians fix is applied. 1998-08-05 08:59:53 +00:00
inc * the raise helper routine get the exception object call by value 1998-08-02 16:43:35 +00:00
linux + Added support for ErrorProc variable. All internal functions are required 1998-07-30 13:26:14 +00:00
m68k + Added support for ErrorProc variable. All internal functions are required 1998-07-30 13:26:14 +00:00
objpas + Added support for ExceptProc+ 1998-07-30 16:10:11 +00:00
os2 + Added support for errorproc. Changed runerror to HandleError 1998-07-30 13:27:19 +00:00
palmos + some new converted header files added 1998-08-05 21:47:21 +00:00
template * strpas bugfix 1998-07-01 14:29:42 +00:00
win32 + Added support for errorproc. Changed runerror to HandleError 1998-07-30 13:27:19 +00:00
COPYING Initial revision 1998-03-25 11:18:12 +00:00
COPYING.FPC Initial revision 1998-03-25 11:18:12 +00:00
makefile + Added clean targets for utils. 1998-07-20 23:42:03 +00:00
readme * changed rtldos to rtlgo32v1 1998-03-26 22:12:48 +00:00

This is the Run-Time Library (RTL) tree for FPK Pascal.

In order to use the DJGPP make under dos 
all / are converted into \ in the RTL,
this means that you cannot use make for builing the RTL
from and older version of the RTL (that doesnot have this feature).
  To compile this version under DOS use newrtl.bat or newrtl1.bat.
 
To recompile the RTL, edit the main makefile. The makefiles NEED a GNU make
compatible make.

You must set:
The compiler to use
  - If you specify a path, set an ABSOLUTE path !!
The directory where to install the libraries. 
  - Under DOS, this directory MUST exist.
  - Subdirectories of this directory will be created for each OS
    OS dependent files will be installed there.
The OS you are compiling under
  - dos, go32v2, linux, os2
  - Under linux, you must specify the version of the compiler.
Do you want debugging information included in the RTL.
 
Optionally, you can set:
- Specify if you want the output of the compiler to be redirected to a file.
- Specify which file to use 
- additional options to give to the compiler
- Specify which error-definitions file you want to use 
- The program used to make directories
- The program used to install the files in their directories.

You can also set these settings in the makefiles in the different target 
directories. The options set there will be overridden if you do a make from
the main makefile.

The main makefile understands the following targets :
- all      (compiles RTL for all target OSes)
- native   (compiles RTL for the system you're working on)
- rtlgo32v1, rtllinux, rtlgo32v2, rtlos2 (compiles RTL for specific OS)

- clean    (cleans all directories )
- native_clean (cleans native directory only)
- diffs     ( to create diffs files to a relase version if you have
	      made improvements so you can send them back to the developpers )
	    ( this need a release RTL tree and to
	      set REFPATH to the directory )	
- diffclean ( to remove all diff files, usefull if you change REFPATH)
- install      (does install for all target OSes)
- native_install (does install for the system you're working on)

- libs              (makes libraries from ALL the rtl units)
- nativelibs        (makes libraries for the system you're working on)
- libinstall        (makes and installs libraries for all the OSes)
- native_libinstall (makes and installs libraries for the system 
                     you're working on)

- utils         (makes utilities in the utils subdirectory)
- utils_install (makes and installs utilities in the utils subdirectory)

Enjoy!