fpc/rtl
svenbarth 1951b8aaaa Fix threadvar handling. Basically a merge of r31913 of my packages branch.
rtl/inc/system.inc:
  * provide a public alias for SetupEntryInformation so that it can be used in SysInit as well without globally exporting it
rtl/win/systlsdir.inc:
  * Exec_tls_callback: call SetupEntryInformation before initalizing the heap and multithreading so that the threadvar tables can be referenced correctly

git-svn-id: trunk@33035 -
2016-01-30 23:10:35 +00:00
..
aarch64
aix - get rid of the calling convention modifier for PascalMain as it's generated using the default calling convention anyway (without any parameters this luckily doesn't matter that much ;) ) 2016-01-29 14:51:15 +00:00
amicommon
amiga
android * fixed cpu unit dependencies for i386 after r32857 (part of mantis #29439) 2016-01-18 22:20:16 +00:00
arm
aros
atari
avr
beos
bsd Fix compilation of Mac OS X. Without the cdecl modifier we need the _ 2016-01-30 19:38:40 +00:00
charmaps
darwin * fixed parallel building for i386 after r32857 2016-01-07 22:06:27 +00:00
dragonfly * fixed cpu unit dependencies for i386 after r32857 (part of mantis #29439) 2016-01-18 22:20:16 +00:00
embedded + use CPU_UNITS_DEFINED to track if a SUBARCH is passed, so with CPU_UNITS_DEFINED=1 it is easily possible to compile without any cpu units 2016-01-03 09:36:23 +00:00
emx
freebsd * fixed cpu unit dependencies for i386 after r32857 (part of mantis #29439) 2016-01-18 22:20:16 +00:00
gba
go32v2
haiku
i386 o unified interface of i386 and x86-64 cpu unit: 2016-01-05 15:23:26 +00:00
i8086 Fix fpc_frac_real, fpc_trunk_real and fpc_int_real by removing the assumption that SP=BP at entry 2016-01-06 15:20:57 +00:00
inc Fix threadvar handling. Basically a merge of r31913 of my packages branch. 2016-01-30 23:10:35 +00:00
java Pass further main program data through the indirect entry information. 2016-01-29 16:51:27 +00:00
jvm
linux * i386-linux: reworked and cleaned up libc-related startup code: 2016-01-22 17:11:08 +00:00
m68k
macos
mips
mipsel
morphos
msdos Use Tiny getmem/freemem functions for systemdebug code, add more debug output 2016-01-16 00:50:30 +00:00
nativent - get rid of the calling convention modifier for PascalMain as it's generated using the default calling convention anyway (without any parameters this luckily doesn't matter that much ;) ) 2016-01-29 14:51:15 +00:00
nds
netbsd * fixed cpu unit dependencies for i386 after r32857 (part of mantis #29439) 2016-01-18 22:20:16 +00:00
netware
netwlibc
objpas Adjustments so that the resource string related tables are provided inside the system unit (both for indirect and direct entry targets). 2016-01-29 17:19:33 +00:00
openbsd * fixed cpu unit dependencies for i386 after r32857 (part of mantis #29439) 2016-01-18 22:20:16 +00:00
os2
palmos
powerpc
powerpc64
qnx
solaris - get rid of the calling convention modifier for PascalMain as it's generated using the default calling convention anyway (without any parameters this luckily doesn't matter that much ;) ) 2016-01-29 14:51:15 +00:00
sparc
symbian - get rid of the calling convention modifier for PascalMain as it's generated using the default calling convention anyway (without any parameters this luckily doesn't matter that much ;) ) 2016-01-29 14:51:15 +00:00
ucmaps
unix
watcom
wii
win Fix threadvar handling. Basically a merge of r31913 of my packages branch. 2016-01-30 23:10:35 +00:00
win16
win32 Adjustments so that the resource string related tables are provided inside the system unit (both for indirect and direct entry targets). 2016-01-29 17:19:33 +00:00
win64 - get rid of the calling convention modifier for PascalMain as it's generated using the default calling convention anyway (without any parameters this luckily doesn't matter that much ;) ) 2016-01-29 14:51:15 +00:00
wince Fix for Mantis #29499. 2016-01-29 14:32:59 +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).

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.