mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-15 03:39:30 +02:00
![]() This patch implements collation'loading at runtime. This reduce the final executable' size as the collation's data are now externaly stored. Note that It requires the external collation files to be shipped and the program to load the collations it needs using the "LoadCollation"/"RegisterCollation" procedure(s). The external collation files are produced by "cldrparser" (while producing the static files). The root collation "ducet" 's external file is produced by "unihelper". It is important to note that these files are endian specific : * collation_*_be.bco for big endian systems * collation_*_le.bco for little endian system. The root collation should at be registered, be it staticaly by using the "unicodeducet" unit or dynamicaly by making a call sush as RegisterCollation(<collation dir>,'ducet'). It is possible, in the same application, to make use of static and dynamic. git-svn-id: trunk@25295 - |
||
---|---|---|
.. | ||
debugsvr | ||
dxegen | ||
fpcm | ||
fpcmkcfg | ||
fpcres | ||
fpcreslipo | ||
fpdoc | ||
fpgmake | ||
fpmc | ||
fppkg | ||
fprcp | ||
h2pas | ||
importtl | ||
instantfpc | ||
javapp/src/fpc/tools/javapp | ||
mksymbian | ||
pas2fpm | ||
pas2jni | ||
pas2ut | ||
rmwait | ||
sim_pasc | ||
svn2cvs | ||
tply | ||
unicode | ||
bin2obj.pp | ||
creumap.pp | ||
data2inc.exm | ||
data2inc.pp | ||
delp.pp | ||
fpmake_add.inc | ||
fpmake_proc.inc | ||
fpmake.pp | ||
grab_vcsa.pp | ||
Makefile | ||
Makefile.fpc | ||
Makefile.fpc.fpcmake | ||
postw32.pp | ||
ppdep.pp | ||
ptop.pp | ||
ptopu.pp | ||
README.txt | ||
rmcvsdir.pp | ||
rstconv.pp | ||
svn2cl.pp |
This dirctory contains some utilities that come with the Free Pascal Compiler. They can be compiled by typing 'make all' in this directory. Currently, the following things are provided: ppdep : Creates a makefile which includes all interdependant units. ptop : Pascal source beautifier delp : Deletes all files generated by Free Pascal, as well temporary files. h2pas/ : Contains the h2pas program, which converts C header files to pascal unit files. tply/ : Pascal Lex and Yacc fpcm/ : fpcmake - utility to generate makefiles to regenerate compiler Typing a 'make install' will put everything into place. Happy Coding ! The Free Pascal Development Team.