rtl.cfg 489 B

1234567891011121314151617181920
  1. # Keep only options that are not features
  2. # as those are now restricted to system unit compilation only
  3. # Minimal set for i8086, copied from AVR above
  4. # does not require extra memory, neither code nor data
  5. # in programs not using e. g. writeln based I/OR
  6. #ifdef CPUI8086
  7. -Cs2048
  8. -CX
  9. -XX
  10. #endif
  11. # does not require extra memory, neither code nor data
  12. # in programs not using e. g. writeln based I/O which is the common case
  13. #ifdef CPUZ80
  14. -SfOBJECTS
  15. -SfEXCEPTIONS
  16. -SfCLASSES
  17. -SfRTTI
  18. #endif