C-SKY: Add -msim option
authorJojo R <jiejie_rong@c-sky.com>
Wed, 16 Sep 2020 11:47:41 +0000 (19:47 +0800)
committerXianmiao Qu <xianmiao_qu@c-sky.com>
Thu, 17 Sep 2020 07:01:32 +0000 (15:01 +0800)
gcc/ChangeLog:

* config/csky/csky.opt (msim): New.
* doc/invoke.texi (C-SKY Options): Document -msim.
* config/csky/csky-elf.h (LIB_SPEC): Add simulator runtime.

gcc/config/csky/csky-elf.h
gcc/config/csky/csky.opt
gcc/doc/invoke.texi

index 15a0e73baa4a4819a6651a99aa021c1cf9bf7560..a79d757c0de2dbefbadd5747cf156ee8bdc4d737 100644 (file)
  %{EL:-EL} -X"
 
 #undef LIB_SPEC
-#define LIB_SPEC \
-  "%{pthread:-lpthread} -lc %{mccrt:-lcc-rt}"
+#define LIB_SPEC "\
+%{pthread:-lpthread} \
+--start-group \
+-lc \
+%{msim:-lsemi}%{!msim:-lnosys} \
+--end-group \
+%{mccrt:-lcc-rt} \
+"
 /* FIXME add this to LIB_SPEC when need */
 /*   %{!shared:%{profile:-lc_p}%{!profile:-lc}}" */
 
index 60b51e5798fc9a41ea104826a55a872867b8dc5b..505a7642293c560a1e2c939263bf70de1f1bf5ae 100644 (file)
@@ -192,3 +192,7 @@ Set the branch costs to roughly the specified number of instructions.
 msched-prolog
 Target Report Var(flag_sched_prolog) Init(0)
 Permit scheduling of function prologue and epilogue sequences.
+
+msim
+Target
+Use the simulator runtime.
index 6d9ff2c3362edcdd60a5a8fafbf93da6dcd11457..9176c8306f09325b7a4d9d04f0dc9f2741be9a17 100644 (file)
@@ -829,7 +829,7 @@ Objective-C and Objective-C++ Dialects}.
 -mdsp  -medsp  -mvdsp @gol
 -mdiv  -msmart  -mhigh-registers  -manchor @gol
 -mpushpop  -mmultiple-stld  -mconstpool  -mstack-size  -mccrt @gol
--mbranch-cost=@var{n}  -mcse-cc  -msched-prolog}
+-mbranch-cost=@var{n}  -mcse-cc  -msched-prolog -msim}
 
 @emph{Darwin Options}
 @gccoptlist{-all_load  -allowable_client  -arch  -arch_errors_fatal @gol
@@ -20835,6 +20835,11 @@ this option can result in code that is not compliant with the C-SKY V2 ABI
 prologue requirements and that cannot be debugged or backtraced.
 It is disabled by default.
 
+@item -msim
+@opindex msim
+Links the library libsemi.a which is in compatible with simulator. Applicable
+to ELF compiler only.
+
 @end table
 
 @node Darwin Options