fpc/rtl
Jonas Maebe 78c29a33ba * changed the parameters of gotoxy() and the return values of wherex/wherey
from byte into tcrtcoord=1..255, since all crt unit coordinates are
    1-based (not for Window() procedure, see comments in crth.inc;
    mantis #13788)

git-svn-id: trunk@13191 -
2009-05-24 11:48:49 +00:00
..
amiga * changed the parameters of gotoxy() and the return values of wherex/wherey 2009-05-24 11:48:49 +00:00
arm * return 0 for length(pchar(0)), like Kylix does (using corrected and 2009-01-01 22:02:17 +00:00
atari * unicodestringmanager patch from r11743 extended to OS/2 and other platforms using system.pas instead of system.pp 2008-12-19 12:47:17 +00:00
avr
beos * Removed unused private fields TThread.FMethod and TThread.FSynchronizeException. 2009-05-02 12:09:30 +00:00
bsd + Darwin-specific fcntl constants 2009-05-23 10:10:56 +00:00
darwin * remove the RTL's installed signal handlers at the end of the system 2009-05-02 09:40:44 +00:00
embedded + list of possible feature switches 2009-02-07 21:48:43 +00:00
emx
freebsd * remove the RTL's installed signal handlers at the end of the system 2009-05-02 09:40:44 +00:00
gba
go32v2 * changed the parameters of gotoxy() and the return values of wherex/wherey 2009-05-24 11:48:49 +00:00
haiku * remove the RTL's installed signal handlers at the end of the system 2009-05-02 09:40:44 +00:00
i386 * applied feature dependencies patch by Sven Barth from mantis #13673 : 2009-05-09 20:08:57 +00:00
inc * changed the parameters of gotoxy() and the return values of wherex/wherey 2009-05-24 11:48:49 +00:00
linux * fixed linux flock type by defining and using a kernel_off_t type 2009-05-09 19:47:59 +00:00
m68k
macos * added .txt extensions to all README, TODO and COPYING files 2009-02-28 17:34:08 +00:00
morphos * fixed typo 2009-02-28 12:14:59 +00:00
nds * Changes to compiler and rtl to make it compatible with devkitARM r24 2009-01-18 16:05:44 +00:00
netbsd * remove the RTL's installed signal handlers at the end of the system 2009-05-02 09:40:44 +00:00
netware * changed the parameters of gotoxy() and the return values of wherex/wherey 2009-05-24 11:48:49 +00:00
netwlibc * changed the parameters of gotoxy() and the return values of wherex/wherey 2009-05-24 11:48:49 +00:00
objpas - unconditionally enabled {$ifdef PARAOUTFILE}-code (that define was 2009-05-21 09:57:45 +00:00
openbsd * remove the RTL's installed signal handlers at the end of the system 2009-05-02 09:40:44 +00:00
os2
palmos
powerpc * fixed return value of InterlockedCompareExchange(64) for ppc/ppc64, 2009-05-11 07:26:48 +00:00
powerpc64 * fixed return value of InterlockedCompareExchange(64) for ppc/ppc64, 2009-05-11 07:26:48 +00:00
qnx
solaris * remove the RTL's installed signal handlers at the end of the system 2009-05-02 09:40:44 +00:00
sparc
symbian
ucmaps
unix * changed the parameters of gotoxy() and the return values of wherex/wherey 2009-05-24 11:48:49 +00:00
watcom * changed the parameters of gotoxy() and the return values of wherex/wherey 2009-05-24 11:48:49 +00:00
win * changed the parameters of gotoxy() and the return values of wherex/wherey 2009-05-24 11:48:49 +00:00
win32 * also compile lnfodwrf on win32 by default 2009-03-17 19:17:22 +00:00
win64 * Use RIP relative symbol addressing in assembler blocks. Finally bug #13657 is fixed. 2009-05-13 10:45:54 +00:00
wince * API records are not packed on wince. Bug #13614. 2009-05-02 14:22:55 +00:00
x86_64 * Use RIP relative symbol addressing in assembler blocks. Finally bug #13657 is fixed. 2009-05-13 10:45:54 +00:00
COPYING.FPC
COPYING.txt * added .txt extensions to all README, TODO and COPYING files 2009-02-28 17:34:08 +00:00
fpmake.inc
fpmake.pp
Makefile + build embedded rtl 2009-02-01 17:17:39 +00:00
Makefile.fpc + build embedded rtl 2009-02-01 17:17:39 +00:00
README.txt * added .txt extensions to all README, TODO and COPYING files 2009-02-28 17:34:08 +00:00

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.