From 836a932b9ab9a993bf4c88db06d08e037bec2453 Mon Sep 17 00:00:00 2001 From: pierre Date: Tue, 25 Aug 2020 15:15:51 +0000 Subject: [PATCH] Move z80 specific -Sf options from rtl.cfg to system.cfg, as -Sf options are only accepted when compiliing system unit git-svn-id: trunk@46691 - --- rtl/embedded/rtl.cfg | 9 --------- rtl/embedded/system.cfg | 8 +++++++- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/rtl/embedded/rtl.cfg b/rtl/embedded/rtl.cfg index 46facb213c..e33f5490ac 100644 --- a/rtl/embedded/rtl.cfg +++ b/rtl/embedded/rtl.cfg @@ -9,12 +9,3 @@ -CX -XX #endif - -# does not require extra memory, neither code nor data -# in programs not using e. g. writeln based I/O which is the common case -#ifdef CPUZ80 --SfOBJECTS --SfEXCEPTIONS --SfCLASSES --SfRTTI -#endif diff --git a/rtl/embedded/system.cfg b/rtl/embedded/system.cfg index 2150b306f8..b09331b3d3 100644 --- a/rtl/embedded/system.cfg +++ b/rtl/embedded/system.cfg @@ -265,6 +265,12 @@ -SfRESOURCES #endif CPUXTENSA +# does not require extra memory, neither code nor data +# in programs not using e. g. writeln based I/O which is the common case #ifdef CPUZ80 +-SfOBJECTS +-SfEXCEPTIONS +-SfCLASSES +-SfRTTI -SfSOFTFPU -#endif CPUZ80 +#endif