mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 17:39:24 +02:00

(= Android 4.0) java headers: java.*, javax.*, org.*, junit.*, android.*). The RTL can also be used to target earlier versions of the Android platform, but you manually have to take care of not using APIs that weren't available yet. Adding separate units for separate platform versions would only partly solve the problem, because some of the classes used inside the system unit have also changed across versions. Use -Tandroid while compiling to select the Android OS as target platform. git-svn-id: branches/jvmbackend@19830 -
36 lines
580 B
INI
36 lines
580 B
INI
# first, disable all
|
|
# -Sf-
|
|
# uncomment to enable the stuff you want to use
|
|
|
|
# include full heap management into the rtl
|
|
# -SfHEAP
|
|
|
|
# include support for init final code of units into the rtl
|
|
# -SfINITFINAL
|
|
|
|
# -SfCLASSES
|
|
# -SfEXCEPTIONS
|
|
# -SfEXITCODE
|
|
# -SfANSISTRINGS
|
|
# -SfWIDESTRINGS
|
|
# -SfTEXTIO
|
|
# -SfCONSOLEIO
|
|
# -SfFILEIO
|
|
# -SfRANDOM
|
|
# -SfVARIANTS
|
|
# -SfOBJECTS
|
|
# -SfDYNARRAYS
|
|
# -SfTHREADING
|
|
# -SfCOMMANDARGS
|
|
# -SfPROCESSES
|
|
# -SfSTACKCHECK
|
|
# -SfDYNLIBS
|
|
|
|
# include exit code support
|
|
-SfEXITCODE
|
|
|
|
# arm is powerful enough to handle a softfpu
|
|
#ifdef CPUARM
|
|
-SfSOFTFPU
|
|
#endif CPUARM
|