mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
38 lines
927 B
ObjectPascal
38 lines
927 B
ObjectPascal
unit buildrtl;
|
|
|
|
interface
|
|
{$IFDEF FPC_DOTTEDUNITS}
|
|
uses
|
|
si_prc,
|
|
AmigaApi.AThreads, TP.DOS, System.SysUtils,
|
|
|
|
{$ifdef cpupowerpc}
|
|
exeinfo, lineinfo,
|
|
{$endif}
|
|
|
|
System.CTypes, System.Strings,
|
|
System.RtlConsts, System.SysConst, System.Math, System.Types,
|
|
System.TypInfo, System.SortBase, System.FGL, System.Classes,
|
|
System.CharSet, System.Character, System.GetOpts,
|
|
System.FPWideString,
|
|
System.SoftFPU, System.SoftFpuX80, System.SoftFpu128, System.UFloatX80, System.UFloat128;
|
|
{$ELSE FPC_DOTTEDUNITS}
|
|
uses
|
|
si_prc,
|
|
athreads, dos, sysutils,
|
|
|
|
{$ifdef cpupowerpc}
|
|
exeinfo, lineinfo,
|
|
{$endif}
|
|
|
|
ctypes, strings,
|
|
rtlconsts, sysconst, math, types,
|
|
typinfo, sortbase, fgl, classes,
|
|
charset, character, getopts,
|
|
fpwidestring,
|
|
softfpu, sfpux80, ufloatx80, sfpu128, ufloat128;
|
|
{$ENDIF FPC_DOTTEDUNITS}
|
|
implementation
|
|
|
|
end.
|