rtl.cfg 814 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # first, disable all
  2. -Sf-
  3. # enable required ones
  4. # they don't add much additional code or data
  5. -SfTEXTIO
  6. -SfFILEIO
  7. -SfHEAP
  8. # uncomment to enable the stuff you want to use
  9. # include full heap management into the rtl
  10. # -SfHEAP
  11. # include support for init final code of units into the rtl
  12. # -SfINITFINAL
  13. # -SfCLASSES
  14. # -SfEXCEPTIONS
  15. # -SfEXITCODE
  16. # -SfANSISTRINGS
  17. # -SfWIDESTRINGS
  18. # -SfTEXTIO
  19. # -SfCONSOLEIO
  20. # -SfFILEIO
  21. # -SfRANDOM
  22. # -SfVARIANTS
  23. # -SfOBJECTS
  24. # -SfDYNARRAYS
  25. # -SfTHREADING
  26. # -SfCOMMANDARGS
  27. # -SfPROCESSES
  28. # -SfSTACKCHECK
  29. # -SfDYNLIBS
  30. # include exit code support
  31. -SfEXITCODE
  32. # arm is powerful enough to handle most object pascal constructs
  33. # it is only a matter of size
  34. #ifdef CPUARM
  35. -SfSOFTFPU
  36. -SfCLASSES
  37. -SfEXCEPTIONS
  38. -SfANSISTRINGS
  39. -SfRTTI
  40. -SfWIDESTRINGS
  41. -SfDYNARRAYS
  42. -SfVARIANTS
  43. #endif CPUARM