fpc/rtl
nickysn 5c8aa6e5b0 * fpc_mul_integer and fpc_mul_longint: fallback directly to the unsigned
multiplication routine in case overflow checking is not used

git-svn-id: trunk@26524 -
2014-01-19 23:06:34 +00:00
..
aix * some more socket fixes. unix*/unx* files were manually moved, not svn moved. 2014-01-12 14:11:50 +00:00
amiga * Initial active version of 2014-01-05 19:20:15 +00:00
android * winsock(and -2), sockets and gpm to rtl-extra. 2014-01-11 19:45:37 +00:00
arm
atari
avr
beos * some more socket fixes. unix*/unx* files were manually moved, not svn moved. 2014-01-12 14:11:50 +00:00
bsd
charmaps + character sets for central Europe added 2014-01-19 01:24:16 +00:00
darwin * some more socket fixes. unix*/unx* files were manually moved, not svn moved. 2014-01-12 14:11:50 +00:00
embedded
emx * winsock(and -2), sockets and gpm to rtl-extra. 2014-01-11 19:45:37 +00:00
freebsd * some more socket fixes. unix*/unx* files were manually moved, not svn moved. 2014-01-12 14:11:50 +00:00
gba * Initial active version of 2014-01-05 19:20:15 +00:00
go32v2 * go32v2 makefile still contained a variants unit 2014-01-05 19:41:19 +00:00
haiku * some more socket fixes. unix*/unx* files were manually moved, not svn moved. 2014-01-12 14:11:50 +00:00
i386 * i386: Somewhat optimized fpc_mul_qword routine, got rid from variable 'r', registers esi and edi. Also ignore overflow checking when both operands have their high dwords equal to zero, because in such case multiplication cannot overflow. 2014-01-18 19:28:00 +00:00
i8086 + added asm optimized 64-bit division helpers for i8086 by Max Nazhalov 2014-01-19 20:26:24 +00:00
inc * fpc_mul_integer and fpc_mul_longint: fallback directly to the unsigned 2014-01-19 23:06:34 +00:00
java * Initial active version of 2014-01-05 19:20:15 +00:00
jvm
linux * winsock(and -2), sockets and gpm to rtl-extra. 2014-01-11 19:45:37 +00:00
m68k
macos
mips
mipsel
morphos * winsock(and -2), sockets and gpm to rtl-extra. 2014-01-11 19:45:37 +00:00
msdos Avoid assmebler size mismatch warning in Keep procedure 2014-01-17 23:33:24 +00:00
nativent Fix compilation of NativeNT after the recent RTL changes 2014-01-08 16:52:36 +00:00
nds * Initial active version of 2014-01-05 19:20:15 +00:00
netbsd Remove objects from RTL unit list for netbsd 2014-01-13 22:23:24 +00:00
netware * winsock(and -2), sockets and gpm to rtl-extra. 2014-01-11 19:45:37 +00:00
netwlibc * winsock(and -2), sockets and gpm to rtl-extra. 2014-01-11 19:45:37 +00:00
objpas * always use the *W version of the Windows API in ExtractShortPathName() so 2014-01-13 22:21:09 +00:00
openbsd Recompiled with pic option 2014-01-13 23:07:56 +00:00
os2 * GetProcAddr added for OS/2, type of argument for ordinal target specific now 2014-01-19 21:15:26 +00:00
palmos
powerpc
powerpc64
qnx * Initial active version of 2014-01-05 19:20:15 +00:00
solaris * winsock(and -2), sockets and gpm to rtl-extra. 2014-01-11 19:45:37 +00:00
sparc + SPARC: assembler implementation of SarInt64. 2014-01-15 15:11:40 +00:00
symbian * Initial active version of 2014-01-05 19:20:15 +00:00
ucmaps
unix * winsock(and -2), sockets and gpm to rtl-extra. 2014-01-11 19:45:37 +00:00
watcom * Initial active version of 2014-01-05 19:20:15 +00:00
wii * Initial active version of 2014-01-05 19:20:15 +00:00
win * GetProcAddr added for OS/2, type of argument for ordinal target specific now 2014-01-19 21:15:26 +00:00
win32 * regenerated makefiles affected by the last change 2014-01-18 10:21:41 +00:00
win64 * winsock(and -2), sockets and gpm to rtl-extra. 2014-01-11 19:45:37 +00:00
wince * fixed WinCE breakage caused when moving to target dependent type for ordinal argument in GetProcAddress 2014-01-19 22:42:52 +00:00
x86_64 * x86_64: Adjust result of fpc_longjmp without using branches. 2014-01-10 07:29:28 +00:00
COPYING.FPC
COPYING.txt
fpmake.inc
fpmake.pp
Makefile * regenerated makefiles affected by the last change 2014-01-18 10:21:41 +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).

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.