2
0

rtl.cfg 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. -SfCOMMANDARGS
  44. -SfRANDOM
  45. #endif CPUARM
  46. # mipsel is powerful enough to handle most object pascal constructs
  47. # it is only a matter of size
  48. #ifdef CPUMIPSEL
  49. -SfSOFTFPU
  50. -SfCLASSES
  51. -SfEXCEPTIONS
  52. -SfANSISTRINGS
  53. -SfRTTI
  54. -SfWIDESTRINGS
  55. -SfDYNARRAYS
  56. -SfVARIANTS
  57. -SfCOMMANDARGS
  58. -SfRANDOM
  59. #endif CPUMIPSEL