fpc/rtl
2020-04-21 06:06:09 +00:00
..
aarch64 * llvm sometimes uses the AArch64 framepointer register as a regvar in the 2020-01-29 22:21:21 +00:00
aix Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
amicommon amicommon: only include exec helpers when compiling for v2.0 in athreads 2020-04-17 00:15:30 +00:00
amiga m68k-amiga: implemented LockDosList, UnlockDosList, and NextDosEntry helpers for legacy support 2020-04-21 03:01:17 +00:00
android Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
arm
aros Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
atari Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
avr * AVR: take care of CPUAVR_HAS_MOVW in assembler routines 2020-02-08 22:05:20 +00:00
beos Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
bsd
charmaps
darwin Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
dragonfly Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
embedded Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
emx Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
freebsd Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
freertos + forgotten files added 2020-04-20 20:08:19 +00:00
gba Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
go32v2 Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
haiku Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
i386 Add most SSE instructions as intrinsics. 2020-03-06 21:34:22 +00:00
i8086
inc * Use ansistrings for options. (bug ID 36892) 2020-04-09 21:05:59 +00:00
java Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
jvm
linux Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
m68k
macos Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
mips
mipsel
morphos Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
msdos Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
nativent Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
nds Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
netbsd Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
netware Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
netwlibc Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
objpas * fix Min/MaxSingle/Double values, resolves #36870 2020-04-13 08:48:32 +00:00
openbsd Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
os2 Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
palmos Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
powerpc
powerpc64
qnx Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
riscv32
riscv64
solaris Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
sparc
sparc64
symbian Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
ucmaps
unix * Avoid doing a syscall with a nil parameter in fileexists 2020-02-02 11:06:14 +00:00
watcom Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
wii Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
win * store and restore the 8087 control world only on x86 systems 2020-04-21 06:04:52 +00:00
win16 Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
win32 Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
win64 + implement a main_wrapper for the default exception handler for aarch64-win64 2020-04-21 06:06:09 +00:00
wince Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
x86_64 Add most SSE instructions as intrinsics. 2020-03-06 21:34:22 +00:00
xtensa + Xtensa: mathu.inc using only the softfloat unit provided mechanisms 2020-03-23 20:54:55 +00:00
COPYING.FPC
COPYING.txt
fpmake.inc
fpmake.pp
Makefile Regenerate all Makefiles 2020-04-20 13:58:47 +00:00
Makefile.fpc + freertos 2020-04-10 19:41:45 +00:00
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).

Enjoy.