fpc/rtl
2014-03-17 21:58:53 +00:00
..
aix
amiga use unsigned RawDoFmt() formatting for size in heap debug mode 2014-03-10 00:53:09 +00:00
android
arm * generate rfs/wfs for thumb2 only if an fpa fpu is used 2014-03-11 21:20:49 +00:00
atari
avr
beos * Removed SysInitFPU/SysResetFPU from (remaining) system units initialization code. It is redundant there because it is called from fpc_cpuinit, or, in case of i386, from fpc_cpucodeinit. 2014-03-17 10:53:52 +00:00
bsd * Removed SysInitFPU/SysResetFPU from (remaining) system units initialization code. It is redundant there because it is called from fpc_cpuinit, or, in case of i386, from fpc_cpucodeinit. 2014-03-17 10:53:52 +00:00
charmaps
darwin
embedded * Removed SysInitFPU/SysResetFPU from (remaining) system units initialization code. It is redundant there because it is called from fpc_cpuinit, or, in case of i386, from fpc_cpucodeinit. 2014-03-17 10:53:52 +00:00
emx * Clarified comments regarding TIB layout and stack bounds on OS/2. 2014-03-14 15:18:23 +00:00
freebsd
gba * Since StackTop=StackBottom+StackLength, any two variables are sufficient to describe stack, the third one is redundant. 2014-03-12 19:48:03 +00:00
go32v2 * Since StackTop=StackBottom+StackLength, any two variables are sufficient to describe stack, the third one is redundant. 2014-03-12 19:48:03 +00:00
haiku * Removed SysInitFPU/SysResetFPU from (remaining) system units initialization code. It is redundant there because it is called from fpc_cpuinit, or, in case of i386, from fpc_cpucodeinit. 2014-03-17 10:53:52 +00:00
i386 * i386: Perform all CPU-related initialization in fpc_cpucodeinit, instead of having it scattered between fpc_cpuinit,fpc_cpucodeinit and check_sse_support. Simplifies things quite a bit. 2014-03-16 22:20:39 +00:00
i8086 + add overloaded versions of HexStr(pointer) for i8086 near and far pointers 2014-03-16 17:40:31 +00:00
inc * Replaced fpc_ln_real with modern port from fdlibm/uclibc, it has even better accuracy than damath library. 2014-03-17 14:54:27 +00:00
java
jvm
linux * Removed SysInitFPU/SysResetFPU from (remaining) system units initialization code. It is redundant there because it is called from fpc_cpuinit, or, in case of i386, from fpc_cpucodeinit. 2014-03-17 10:53:52 +00:00
m68k
macos
mips
mipsel
morphos * Removed SysInitFPU/SysResetFPU from (remaining) system units initialization code. It is redundant there because it is called from fpc_cpuinit, or, in case of i386, from fpc_cpucodeinit. 2014-03-17 10:53:52 +00:00
msdos * several local variables changed from longint to integer 2014-03-17 21:58:53 +00:00
nativent
nds * Since StackTop=StackBottom+StackLength, any two variables are sufficient to describe stack, the third one is redundant. 2014-03-12 19:48:03 +00:00
netbsd
netware
netwlibc
objpas + add overloaded versions of HexStr(pointer) for i8086 near and far pointers 2014-03-16 17:40:31 +00:00
openbsd * i386: Perform all CPU-related initialization in fpc_cpucodeinit, instead of having it scattered between fpc_cpuinit,fpc_cpucodeinit and check_sse_support. Simplifies things quite a bit. 2014-03-16 22:20:39 +00:00
os2 * Removed SysInitFPU/SysResetFPU from (remaining) system units initialization code. It is redundant there because it is called from fpc_cpuinit, or, in case of i386, from fpc_cpucodeinit. 2014-03-17 10:53:52 +00:00
palmos
powerpc
powerpc64
qnx
solaris
sparc
symbian
ucmaps
unix
watcom
wii * Since StackTop=StackBottom+StackLength, any two variables are sufficient to describe stack, the third one is redundant. 2014-03-12 19:48:03 +00:00
win
win32 * Forgot to increase size of array in r27146 2014-03-17 21:28:16 +00:00
win64 - Removed Win64 SEH code specific to results of managed types returned in registers. Since r26228 managed types are always returned in parameters. 2014-03-16 15:48:49 +00:00
wince * Since StackTop=StackBottom+StackLength, any two variables are sufficient to describe stack, the third one is redundant. 2014-03-12 19:48:03 +00:00
x86_64
COPYING.FPC
COPYING.txt
fpmake.inc
fpmake.pp
Makefile
Makefile.fpc
README.txt

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

To recompile the RTL, edit the main makefile. The makefiles NEED a GNU make
compatible make, they need unix-like 'rm' and 'mv' commands, as well as some
others. You can find these in the gnuutils package on the ftp site.

The main makefile is located ABOVE the RTL tree. It uses the FPC
makefile.fpc to guess reasonable defaults for everything it needs.
(these files can be found in base.zip on the FTP site)

The only variable that you may want to set are
FPC             - What compiler to use. Use an absolute path. 
                  (default is ppc386)
INSTALL_UNITDIR - Where to install the RTL units 
OPT             - any special options you want to set for the compiler.

In principle, you can also descend into the subdirectory of your OS, and
type 'make' there, that should also compile everything.

The tree contains subdirectories for all the supported operating systems,
as well as all processor architectures. The processor directories contain
low-level routines which are required for the system unit (if they are not 
available in high-level language form), as well as optimized versions of
the pascal generic routines (the generic routine source code is localed in
the inc subdirectory).

The following directories are not supported officially and may not work
correctly with FreePascal v1.0:

go32v1 - The DJGPP go32v1 DOS extender (no longer supported)
palmos - The PalmOS directory for the Dragonball (incomplete)


Enjoy.