public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [testsuite] add option to LTO flags for c-torture/execute/builtins tests
@ 2013-01-15 19:46 Janis Johnson
  2013-01-16  2:33 ` Hans-Peter Nilsson
  0 siblings, 1 reply; 3+ messages in thread
From: Janis Johnson @ 2013-01-15 19:46 UTC (permalink / raw)
  To: gcc-patches; +Cc: joel

[-- Attachment #1: Type: text/plain, Size: 602 bytes --]

Most of the tests in gcc.c-torture/execute/builtins that use LTO torture
options "-O2 -flto -fuse-linker-plugin -fno-fat-lto-objects" fail to
link on EABI and ELF targets with multiple definitions for either memset
or strlen.  I filed PR testsuite/55994 and was told that the fix is to
run the tests for those targets with "-Wl,--allow-multiple-definition".
This patch adds that option to the flags used for the builtins tests
for EABI and ELF targets.

That option is probably also needed for RTEMS targets; I've copied Joel
so he can look into that.

Tested on arm-none-eabi; OK for mainline?

Janis

[-- Attachment #2: gcc-20130115-1 --]
[-- Type: text/plain, Size: 839 bytes --]

2013-01-15  Janis Johnson  <janisjo@codesourcery.com>

	PR testsuite/55994
	* gcc.c-torture/execute/builtins/builtins.exp: Add
	-Wl,--allow-multiple-definition for eabi and elf targets.

Index: testsuite/gcc.c-torture/execute/builtins/builtins.exp
===================================================================
--- testsuite/gcc.c-torture/execute/builtins/builtins.exp	(revision 195211)
+++ testsuite/gcc.c-torture/execute/builtins/builtins.exp	(working copy)
@@ -41,6 +41,10 @@
 if [istarget "powerpc-*-darwin*"] {
    lappend additional_flags "-Wl,-multiply_defined,suppress"
 }
+if { [istarget *-*-eabi*]
+     || [istarget *-*-elf] } {
+   lappend additional_flags "-Wl,--allow-multiple-definition"
+}
 
 foreach src [lsort [find $srcdir/$subdir *.c]] {
     if {![string match *-lib.c $src] && [runtest_file_p $runtests $src]} {

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

* Re: [testsuite] add option to LTO flags for c-torture/execute/builtins tests
  2013-01-15 19:46 [testsuite] add option to LTO flags for c-torture/execute/builtins tests Janis Johnson
@ 2013-01-16  2:33 ` Hans-Peter Nilsson
  0 siblings, 0 replies; 3+ messages in thread
From: Hans-Peter Nilsson @ 2013-01-16  2:33 UTC (permalink / raw)
  To: janisjo; +Cc: gcc-patches, joel

On Tue, 15 Jan 2013, Janis Johnson wrote:
> Most of the tests in gcc.c-torture/execute/builtins that use LTO torture
> options "-O2 -flto -fuse-linker-plugin -fno-fat-lto-objects" fail to
> link on EABI and ELF targets with multiple definitions for either memset
> or strlen.  I filed PR testsuite/55994 and was told that the fix is to
> run the tests for those targets with "-Wl,--allow-multiple-definition".
> This patch adds that option to the flags used for the builtins tests
> for EABI and ELF targets.
>
> That option is probably also needed for RTEMS targets; I've copied Joel
> so he can look into that.
>
> Tested on arm-none-eabi; OK for mainline?

Weird that I don't see this for cris-elf test-results.  Can't
help wondering if there's something wrong target-wise then. :)

As you noticed (cross-referenced PR) I do see it for
mmix-knuth-mmixware.  I'll have to check and likely add that to
the glob in your patch.  Thanks, one less mystery (but another added).

brgds, H-P

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

* Re: [testsuite] add option to LTO flags for c-torture/execute/builtins tests
@ 2013-01-16 13:44 Nick Clifton
  0 siblings, 0 replies; 3+ messages in thread
From: Nick Clifton @ 2013-01-16 13:44 UTC (permalink / raw)
  To: janis_johnson; +Cc: gcc-patches

Hi Janis,

> 2013-01-15  Janis Johnson  <janisjo@codesourcery.com>
> 
> 	PR testsuite/55994
> 	* gcc.c-torture/execute/builtins/builtins.exp: Add
> 	-Wl,--allow-multiple-definition for eabi and elf targets.

Approved - please apply.

Cheers
  Nick

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

end of thread, other threads:[~2013-01-16 13:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-01-15 19:46 [testsuite] add option to LTO flags for c-torture/execute/builtins tests Janis Johnson
2013-01-16  2:33 ` Hans-Peter Nilsson
2013-01-16 13:44 Nick Clifton

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).