mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-29 06:23:43 +02:00

* Many more RTL units are enabled now, like SysUtils, Classes, Math, FGL, etc and Text-, File- and ConsoleIO features are enabled now as well (Threading and Processes are enabled, too, but their implementations are only stubs!). ConsoleIO isn't tested though, because the processes that are started by SMSS have their Standard Handles set to 0. git-svn-id: trunk@16553 -
24 lines
401 B
ObjectPascal
24 lines
401 B
ObjectPascal
unit buildrtl;
|
|
|
|
interface
|
|
|
|
uses
|
|
ndk, ndkutils, ddk,
|
|
ctypes, strings,
|
|
matrix,
|
|
rtlconsts, sysconst, sysutils, math, types,
|
|
strutils, dateutils, varutils, variants, typinfo, fgl, classes,
|
|
convutils, stdconvs,
|
|
{$ifdef cpui386}
|
|
mmx, cpu,
|
|
{$endif}
|
|
{$ifdef cpux86_64}
|
|
cpu,
|
|
{$endif}
|
|
charset, ucomplex, getopts,
|
|
fmtbcd;
|
|
|
|
implementation
|
|
|
|
end.
|