fpc/rtl
Jonas Maebe 490f057aa1 * replaced the arrays in the generic set helpers with arrays of 32 bytes
instead of high(cardinal), so LLVM doesn't get tricked into massively
    unrolling and parallelising those loops

git-svn-id: trunk@43408 -
2019-11-06 21:50:23 +00:00
..
aarch64 o AArch64: 2019-10-11 21:55:48 +00:00
aix + Add math unit dependency to types$(PPUEXT) rule. 2019-09-19 20:49:12 +00:00
amicommon
amiga
android + Add math unit dependency to types$(PPUEXT) rule. 2019-09-19 20:49:12 +00:00
arm * improved software floating point exception handling in the rtl 2019-10-10 20:31:31 +00:00
aros
atari Define FPC_IS_SYSTEM at start of all system.pp source 2019-10-15 15:04:32 +00:00
avr
beos + Add math unit dependency to types$(PPUEXT) rule. 2019-09-19 20:49:12 +00:00
bsd
charmaps
darwin
dragonfly + Add math unit dependency to types$(PPUEXT) rule. 2019-09-19 20:49:12 +00:00
embedded + Add math unit dependency to types$(PPUEXT) rule. 2019-09-19 20:49:12 +00:00
emx + Add math unit dependency to types$(PPUEXT) rule. 2019-09-19 20:49:12 +00:00
freebsd + Add math unit dependency to types$(PPUEXT) rule. 2019-09-19 20:49:12 +00:00
gba + Add math unit dependency to types$(PPUEXT) rule. 2019-09-19 20:49:12 +00:00
go32v2 Define FPC_IS_SYSTEM at start of all system.pp source 2019-10-15 15:04:32 +00:00
haiku + Add math unit dependency to types$(PPUEXT) rule. 2019-09-19 20:49:12 +00:00
i386
i8086
inc * replaced the arrays in the generic set helpers with arrays of 32 bytes 2019-11-06 21:50:23 +00:00
java + Add math unit dependency to types$(PPUEXT) rule. 2019-09-19 20:49:12 +00:00
jvm
linux * update dependencies of sysutils 2019-10-27 12:45:20 +00:00
m68k
macos Define FPC_IS_SYSTEM at start of all system.pp source 2019-10-15 15:04:32 +00:00
mips
mipsel
morphos
msdos Define FPC_IS_SYSTEM at start of all system.pp source 2019-10-15 15:04:32 +00:00
nativent Define FPC_IS_SYSTEM at start of all system.pp source 2019-10-15 15:04:32 +00:00
nds + Add math unit dependency to types$(PPUEXT) rule. 2019-09-19 20:49:12 +00:00
netbsd + Add math unit dependency to types$(PPUEXT) rule. 2019-09-19 20:49:12 +00:00
netware Define FPC_IS_SYSTEM at start of all system.pp source 2019-10-15 15:04:32 +00:00
netwlibc Define FPC_IS_SYSTEM at start of all system.pp source 2019-10-15 15:04:32 +00:00
objpas * Add AddDelimitedText,AddCommatext by Werner Pamler (bug ID 36249) 2019-11-06 10:51:34 +00:00
openbsd + Add math unit dependency to types$(PPUEXT) rule. 2019-09-19 20:49:12 +00:00
os2 + Add math unit dependency to types$(PPUEXT) rule. 2019-09-19 20:49:12 +00:00
palmos Define FPC_IS_SYSTEM at start of all system.pp source 2019-10-15 15:04:32 +00:00
powerpc
powerpc64
qnx Define FPC_IS_SYSTEM at start of all system.pp source 2019-10-15 15:04:32 +00:00
riscv32
riscv64
solaris * makefile fixes by Alfred, mantis 2019-10-31 12:11:45 +00:00
sparc
sparc64
symbian Define FPC_IS_SYSTEM at start of all system.pp source 2019-10-15 15:04:32 +00:00
ucmaps
unix * fix for mantis , off by one in bounds check. Only affects invalid input though. 2019-10-29 13:44:24 +00:00
watcom Define FPC_IS_SYSTEM at start of all system.pp source 2019-10-15 15:04:32 +00:00
wii + Add math unit dependency to types$(PPUEXT) rule. 2019-09-19 20:49:12 +00:00
win * Delphi raises a EDirectoryNotFoundException if the link's target does not exist, so do the same 2019-10-03 12:07:20 +00:00
win16 Define FPC_IS_SYSTEM at start of all system.pp source 2019-10-15 15:04:32 +00:00
win32 Define FPC_IS_SYSTEM at start of all system.pp source 2019-10-15 15:04:32 +00:00
win64 Define FPC_IS_SYSTEM at start of all system.pp source 2019-10-15 15:04:32 +00:00
wince Fix compilation for wince target after restriction of enum value to longint range 2019-10-15 08:03:39 +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).

Enjoy.