fpc/rtl
Rika Ichinose b723178117 Even better CompareByte for x64.
Tries to handle tails with a SIMD unit as well.
2023-02-19 18:12:37 +00:00
..
aarch64
aix Update Makefiles 2023-02-05 19:18:48 +00:00
amicommon AThreads: ThreadInfo for the main thread move to a global var to prevent problems with heap manager 2023-02-19 14:09:29 +01:00
amiga Update Makefiles 2023-02-05 19:18:48 +00:00
android Update Makefiles 2023-02-05 19:18:48 +00:00
arm
aros Update Makefiles 2023-02-05 19:18:48 +00:00
atari Update Makefiles 2023-02-05 19:18:48 +00:00
avr
beos This change might generate failure to compile 2023-02-08 13:47:58 +00:00
bsd
charmaps
darwin Update Makefiles 2023-02-05 19:18:48 +00:00
dragonfly Update Makefiles 2023-02-05 19:18:48 +00:00
embedded Update Makefiles 2023-02-05 19:18:48 +00:00
emx Update Makefiles 2023-02-05 19:18:48 +00:00
freebsd Update Makefiles 2023-02-05 19:18:48 +00:00
freertos * unit name fixed 2023-02-10 21:16:03 +01:00
gba Update Makefiles 2023-02-05 19:18:48 +00:00
go32v2 Update Makefiles 2023-02-05 19:18:48 +00:00
haiku Update Makefiles 2023-02-05 19:18:48 +00:00
i386 Improved CompareDWord for i386 and x86_64. 2023-02-19 18:07:46 +00:00
i8086
inc Improve generic CompareDWord. 2023-02-19 18:07:46 +00:00
java Update Makefiles 2023-02-05 19:18:48 +00:00
jvm
linux Update Makefiles 2023-02-05 19:18:48 +00:00
loongarch64 Fix compilation error with -dFPC_USE_LIBC for loongarch64 cpu 2023-02-13 22:43:30 +00:00
m68k
macos Update Makefiles 2023-02-05 19:18:48 +00:00
mips
mips64
mips64el
mipsel
morphos Update Makefiles 2023-02-05 19:18:48 +00:00
msdos Update Makefiles 2023-02-05 19:18:48 +00:00
msxdos Update Makefiles 2023-02-05 19:18:48 +00:00
nativent Update Makefiles 2023-02-05 19:18:48 +00:00
nds Update Makefiles 2023-02-05 19:18:48 +00:00
netbsd Update Makefiles 2023-02-05 19:18:48 +00:00
netware Update Makefiles 2023-02-05 19:18:48 +00:00
netwlibc Update Makefiles 2023-02-05 19:18:48 +00:00
objpas * patch by Rika: Implement TCurrencyHelper.Ceil/Floor, resolves #40134 2023-01-31 22:58:51 +01:00
openbsd Update Makefiles 2023-02-05 19:18:48 +00:00
os2 Update Makefiles 2023-02-05 19:18:48 +00:00
palmos Update Makefiles 2023-02-05 19:18:48 +00:00
powerpc
powerpc64
ppcgen
qnx Update Makefiles 2023-02-05 19:18:48 +00:00
riscv
riscv32
riscv64
sinclairql Update Makefiles 2023-02-05 19:18:48 +00:00
solaris Update Makefiles 2023-02-05 19:18:48 +00:00
sparc
sparc64
symbian Update Makefiles 2023-02-05 19:18:48 +00:00
ucmaps
unix add loongarch64 linux rtl support 2023-02-05 19:18:48 +00:00
wasi Update Makefiles 2023-02-05 19:18:48 +00:00
wasm32
watcom Update Makefiles 2023-02-05 19:18:48 +00:00
wii Update Makefiles 2023-02-05 19:18:48 +00:00
win add all peflags 2023-02-13 21:41:54 +00:00
win16 Update Makefiles 2023-02-05 19:18:48 +00:00
win32 Update Makefiles 2023-02-05 19:18:48 +00:00
win64 Update Makefiles 2023-02-05 19:18:48 +00:00
wince Add missing FILE_ATTRIBUTE_XXX constants as found in WinCE 5.0 headers (only FILE_ATTRIBUTE_DEVICE is not defined) 2023-02-08 12:44:30 +00:00
x86_64 Even better CompareByte for x64. 2023-02-19 18:12:37 +00:00
xtensa
z80
zxspectrum Update Makefiles 2023-02-05 19:18:48 +00:00
COPYING.FPC
COPYING.txt
fpmake.inc
fpmake.pp
Makefile Update Makefiles 2023-02-05 19:18:48 +00:00
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.