From 60a3f6590618c8fa74ddc54d3232d57b2908765d Mon Sep 17 00:00:00 2001 From: Claudiu Zissulescu Date: Wed, 13 Jun 2018 10:43:42 +0200 Subject: [PATCH] [ARC] Define LINK_GCC_C_SEQUENCE_SPEC. If no specs file is provided, default to nosys library. gcc/ 2017-05-03 Claudiu Zissulescu * config/arc/elf.h (LINK_GCC_C_SEQUENCE_SPEC): Define. From-SVN: r261541 --- gcc/ChangeLog | 4 ++++ gcc/config/arc/elf.h | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9e3e0805e4c..70be1d2f482 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2018-06-12 Claudiu Zissulescu + + * config/arc/elf.h (LINK_GCC_C_SEQUENCE_SPEC): Define. + 2018-06-12 Claudiu Zissulescu * config/arc/builtins.def (SYNC): SYNC instruction is valid on all diff --git a/gcc/config/arc/elf.h b/gcc/config/arc/elf.h index 43ced3b720f..66ee5b698ea 100644 --- a/gcc/config/arc/elf.h +++ b/gcc/config/arc/elf.h @@ -73,3 +73,8 @@ along with GCC; see the file COPYING3. If not see #undef TARGET_ASM_FILE_END #define TARGET_ASM_FILE_END arc_file_end + +/* If no specs file is enforced, default to nosys libarary. */ +#undef LINK_GCC_C_SEQUENCE_SPEC +#define LINK_GCC_C_SEQUENCE_SPEC \ + "--start-group %G %{!specs=*:-lc -lnosys} --end-group" -- 2.30.2