fpc/rtl
2016-03-19 17:59:42 +00:00
..
aarch64
aix * map ebusy and enotdir to error 5, mantis 2016-03-17 21:15:44 +00:00
amicommon * unicode executeprocess from work during Lazarus convention in IJsselstein 2016-03-19 17:59:42 +00:00
amiga it's now possible to compile the RTL again for AmigaOS/PowerPC. entirely untested, but it builds at least 2016-03-14 02:14:43 +00:00
android * fixed dependencies for lineinfo unit after r33007 2016-02-01 22:52:50 +00:00
arm + cpu unit for arm (linux only so far) 2016-03-06 13:33:20 +00:00
aros AROS: BackTraceStrFunc for AROS via debug.library, enable with EnableBackTraceStr() 2016-03-17 19:12:56 +00:00
atari
avr
beos
bsd * fix for mantis return error 5 on EBUSY and ENOTDIR 2016-03-17 21:14:07 +00:00
charmaps
darwin * fixed dependencies for lineinfo unit after r33007 2016-02-01 22:52:50 +00:00
dragonfly * fixed dependencies for lineinfo unit after r33007 2016-02-01 22:52:50 +00:00
embedded Added x86_64-embedded target. Patch from Benjamin Rosseaux 2016-02-14 10:57:00 +00:00
emx
freebsd * fixed dependencies for lineinfo unit after r33007 2016-02-01 22:52:50 +00:00
gba
go32v2
haiku * fix for mantis return error 5 on EBUSY and ENOTDIR 2016-03-17 21:14:07 +00:00
i386 * fpc_exp_real: replaced pushing immediate values on stack with Darwin-style PIC. This change increases performance on Intel E7200 almost twice. On AMD CPUs performance increase is not that large, but still noticeable. 2016-02-28 16:03:02 +00:00
i8086 Fix fpc_frac_real, fpc_trunk_real and fpc_int_real by removing the assumption that SP=BP at entry 2016-01-06 15:20:57 +00:00
inc * Correct comments about sizes/offsets in invisible string header record 2016-03-13 19:03:40 +00:00
java * take current value of DefaultSystemCodePage into account in 2016-03-05 15:52:32 +00:00
jvm
linux * fix for mantis return error 5 on EBUSY and ENOTDIR 2016-03-17 21:14:07 +00:00
m68k
macos
mips
mipsel
morphos MorphOS: added unicodedata and unicodenumtable 2016-03-04 21:08:43 +00:00
msdos * don't try to build lnfodwrf on i8086-msdos, because it causes internal error 2016-03-18 19:56:37 +00:00
nativent - get rid of the calling convention modifier for PascalMain as it's generated using the default calling convention anyway (without any parameters this luckily doesn't matter that much ;) ) 2016-01-29 14:51:15 +00:00
nds
netbsd * fixed dependencies for lineinfo unit after r33007 2016-02-01 22:52:50 +00:00
netware
netwlibc
objpas * unicode executeprocess from work during Lazarus convention in IJsselstein 2016-03-19 17:59:42 +00:00
openbsd * fixed dependencies for lineinfo unit after r33007 2016-02-01 22:52:50 +00:00
os2 * fixed dependencies for lineinfo unit after r33007 2016-02-01 22:52:50 +00:00
palmos
powerpc
powerpc64
qnx
solaris * fix for mantis return error 5 on EBUSY and ENOTDIR 2016-03-17 21:14:07 +00:00
sparc
symbian - get rid of the calling convention modifier for PascalMain as it's generated using the default calling convention anyway (without any parameters this luckily doesn't matter that much ;) ) 2016-01-29 14:51:15 +00:00
ucmaps
unix * unicode executeprocess from work during Lazarus convention in IJsselstein 2016-03-19 17:59:42 +00:00
watcom
wii
win * unicode executeprocess from work during Lazarus convention in IJsselstein 2016-03-19 17:59:42 +00:00
win16
win32 Adjust SysInstance so that it is correctly handled with the indirect entry information on Win32 2016-02-19 16:22:20 +00:00
win64 Adjust SysInstance so that it is correctly handled with the indirect entry information on Win32 2016-02-19 16:22:20 +00:00
wince Fix for Mantis . 2016-01-29 14:32:59 +00:00
x86_64 * x86_64: Modified fpc_exp_real so it does not use 'sahf' assembler instruction, which may be not present on early 64-bit capable x86 processors. Mantis . 2016-03-07 22:39:34 +00:00
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.