public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH 1/3] C-SKY: Enable crtbegin/crtend.o of libgcc for elf target
       [not found] <jiejie_rong@c-sky.com@C-SKY:_Refine_target_name_for_elf_target_test>
@ 2020-09-16 10:34 ` Jojo R
  2020-09-16 10:34 ` [PATCH 2/3] C-SKY: Set use_gcc_stdint=wrap " Jojo R
  2020-09-16 10:34 ` [PATCH 3/3] C-SKY: Refine target name for elf target test Jojo R
  2 siblings, 0 replies; 4+ messages in thread
From: Jojo R @ 2020-09-16 10:34 UTC (permalink / raw)
  To: jiejie_rong, xianmiao_qu, gcc-patches

libgcc/ChangeLog:

	* config.host (C-SKY): Enable crtbegin/crtend.o of libgcc for elf target.

---
 libgcc/config.host | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libgcc/config.host b/libgcc/config.host
index 7a3e29d..dbb378f 100644
--- a/libgcc/config.host
+++ b/libgcc/config.host
@@ -579,7 +579,7 @@ cris-*-elf)
 	;;
 csky-*-elf*)
 	tmake_file="csky/t-csky t-fdpbit"
-	extra_parts="$extra_parts crti.o crtn.o"
+	extra_parts="crtbegin.o crtend.o crti.o crtn.o"
 	;;
 csky-*-linux*)
 	tmake_file="$tmake_file csky/t-csky t-slibgcc-libgcc t-fdpbit csky/t-linux-csky"
-- 
1.9.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 2/3] C-SKY: Set use_gcc_stdint=wrap for elf target
       [not found] <jiejie_rong@c-sky.com@C-SKY:_Refine_target_name_for_elf_target_test>
  2020-09-16 10:34 ` [PATCH 1/3] C-SKY: Enable crtbegin/crtend.o of libgcc for elf target Jojo R
@ 2020-09-16 10:34 ` Jojo R
  2020-09-16 10:34 ` [PATCH 3/3] C-SKY: Refine target name for elf target test Jojo R
  2 siblings, 0 replies; 4+ messages in thread
From: Jojo R @ 2020-09-16 10:34 UTC (permalink / raw)
  To: jiejie_rong, xianmiao_qu, gcc-patches

gcc/ChangeLog:

	* config.gcc (C-SKY): Set use_gcc_stdint=wrap for elf target.

---
 gcc/config.gcc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gcc/config.gcc b/gcc/config.gcc
index 797f0ad..845f10e 100644
--- a/gcc/config.gcc
+++ b/gcc/config.gcc
@@ -1543,6 +1543,7 @@ csky-*-*)
 		tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file} csky/csky-elf.h"
 		tmake_file="csky/t-csky csky/t-csky-elf"
 		default_use_cxa_atexit=no
+		use_gcc_stdint=wrap
 		;;
 	    csky-*-linux*)
 		tm_file="dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h ${tm_file} csky/csky-linux-elf.h"
-- 
1.9.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 3/3] C-SKY: Refine target name for elf target test
       [not found] <jiejie_rong@c-sky.com@C-SKY:_Refine_target_name_for_elf_target_test>
  2020-09-16 10:34 ` [PATCH 1/3] C-SKY: Enable crtbegin/crtend.o of libgcc for elf target Jojo R
  2020-09-16 10:34 ` [PATCH 2/3] C-SKY: Set use_gcc_stdint=wrap " Jojo R
@ 2020-09-16 10:34 ` Jojo R
  2020-09-16 11:36   ` Cooper Qu
  2 siblings, 1 reply; 4+ messages in thread
From: Jojo R @ 2020-09-16 10:34 UTC (permalink / raw)
  To: jiejie_rong, xianmiao_qu, gcc-patches

gcc/testsuite/ChangeLog:

	* lib/target-supports.exp (check_profiling_available): Refine name of elf target.

---
 gcc/testsuite/lib/target-supports.exp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/testsuite/lib/target-supports.exp b/gcc/testsuite/lib/target-supports.exp
index 6881b66..60f76db 100644
--- a/gcc/testsuite/lib/target-supports.exp
+++ b/gcc/testsuite/lib/target-supports.exp
@@ -698,7 +698,7 @@ proc check_profiling_available { test_what } {
 	     || [istarget avr-*-*]
 	     || [istarget bfin-*-*]
 	     || [istarget cris-*-*]
-	     || [istarget csky-*-elf]
+	     || [istarget csky-*-elf*]
 	     || [istarget fido-*-elf]
 	     || [istarget h8300-*-*]
 	     || [istarget lm32-*-*]
-- 
1.9.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 3/3] C-SKY: Refine target name for elf target test
  2020-09-16 10:34 ` [PATCH 3/3] C-SKY: Refine target name for elf target test Jojo R
@ 2020-09-16 11:36   ` Cooper Qu
  0 siblings, 0 replies; 4+ messages in thread
From: Cooper Qu @ 2020-09-16 11:36 UTC (permalink / raw)
  To: Jojo R, xianmiao_qu, gcc-patches

All of the three pathes have been pushed to trunk.


Thanks,

Cooper


On 9/16/20 6:34 PM, Jojo R wrote:
> gcc/testsuite/ChangeLog:
>
> 	* lib/target-supports.exp (check_profiling_available): Refine name of elf target.
>
> ---
>   gcc/testsuite/lib/target-supports.exp | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/gcc/testsuite/lib/target-supports.exp b/gcc/testsuite/lib/target-supports.exp
> index 6881b66..60f76db 100644
> --- a/gcc/testsuite/lib/target-supports.exp
> +++ b/gcc/testsuite/lib/target-supports.exp
> @@ -698,7 +698,7 @@ proc check_profiling_available { test_what } {
>   	     || [istarget avr-*-*]
>   	     || [istarget bfin-*-*]
>   	     || [istarget cris-*-*]
> -	     || [istarget csky-*-elf]
> +	     || [istarget csky-*-elf*]
>   	     || [istarget fido-*-elf]
>   	     || [istarget h8300-*-*]
>   	     || [istarget lm32-*-*]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-09-16 11:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <jiejie_rong@c-sky.com@C-SKY:_Refine_target_name_for_elf_target_test>
2020-09-16 10:34 ` [PATCH 1/3] C-SKY: Enable crtbegin/crtend.o of libgcc for elf target Jojo R
2020-09-16 10:34 ` [PATCH 2/3] C-SKY: Set use_gcc_stdint=wrap " Jojo R
2020-09-16 10:34 ` [PATCH 3/3] C-SKY: Refine target name for elf target test Jojo R
2020-09-16 11:36   ` Cooper Qu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).