public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Christophe Lyon <christophe.lyon@st.com>
To: <gcc-patches@gcc.gnu.org>
Subject: [ARM/FDPIC v6 22/24] [ARM][testsuite] FDPIC: Skip tests that require -static support
Date: Mon, 09 Sep 2019 15:53:00 -0000	[thread overview]
Message-ID: <20190909154526.11630-23-christophe.lyon@st.com> (raw)
In-Reply-To: <20190909154526.11630-1-christophe.lyon@st.com>

From: Christophe Lyon <christophe.lyon@linaro.org>

Since FDPIC does not support -static, skip the related tests.

2019-XX-XX  Christophe Lyon  <christophe.lyon@st.com>

	gcc/testsuite/
	* lib/target-supports.exp (check_effective_target_static): Disable
	for ARM FDPIC target.

Change-Id: I119d0541e53f2f1e531540b20e7bc47d8338d89a

diff --git a/gcc/testsuite/lib/target-supports.exp b/gcc/testsuite/lib/target-supports.exp
index 1a1eed8..19899ce 100644
--- a/gcc/testsuite/lib/target-supports.exp
+++ b/gcc/testsuite/lib/target-supports.exp
@@ -1083,6 +1083,9 @@ proc check_effective_target_pe_aligned_commons {} {
 
 # Return 1 if the target supports -static
 proc check_effective_target_static {} {
+    if { [istarget arm*-*-uclinuxfdpiceabi] } {
+	return 0;
+    }
     return [check_no_compiler_messages static executable {
 	int main (void) { return 0; }
     } "-static"]
-- 
2.6.3

  parent reply	other threads:[~2019-09-09 15:53 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-09-09 15:45 [ARM/FDPIC v6 00/24] FDPIC ABI for ARM Christophe Lyon
2019-09-09 15:46 ` [ARM/FDPIC v6 01/24] [ARM] FDPIC: Add -mfdpic option support Christophe Lyon
2019-09-09 15:46 ` [ARM/FDPIC v6 03/24] [ARM] FDPIC: Force FDPIC related options unless -mno-fdpic is provided Christophe Lyon
2019-09-09 15:46 ` [ARM/FDPIC v6 02/24] [ARM] FDPIC: Handle arm*-*-uclinuxfdpiceabi in configure scripts Christophe Lyon
2019-09-09 15:47 ` [ARM/FDPIC v6 06/24] [ARM] FDPIC: Add support for c++ exceptions Christophe Lyon
2019-09-09 15:47 ` [ARM/FDPIC v6 04/24] [ARM] FDPIC: Add support for FDPIC for arm architecture Christophe Lyon
2019-09-09 15:47 ` [ARM/FDPIC v6 05/24] [ARM] FDPIC: Fix __do_global_dtors_aux and frame_dummy generation Christophe Lyon
2019-09-09 15:48 ` [ARM/FDPIC v6 08/24] [ARM] FDPIC: Enforce local/global binding for function descriptors Christophe Lyon
2019-09-09 15:48 ` [ARM/FDPIC v6 09/24] [ARM] FDPIC: Add support for taking address of nested function Christophe Lyon
2019-09-09 15:48 ` [ARM/FDPIC v6 07/24] [ARM] FDPIC: Avoid saving/restoring r9 on stack since it is read-only Christophe Lyon
2019-09-09 15:49 ` [ARM/FDPIC v6 12/24] [ARM] FDPIC: Restore r9 after we call __aeabi_read_tp Christophe Lyon
2019-09-09 15:49 ` [ARM/FDPIC v6 10/24] [ARM] FDPIC: Implement TLS support Christophe Lyon
2019-09-09 15:49 ` [ARM/FDPIC v6 11/24] [ARM] FDPIC: Add support to unwind FDPIC signal frame Christophe Lyon
2019-09-09 15:50 ` [ARM/FDPIC v6 14/24] [ARM][testsuite] FDPIC: Skip unsupported tests Christophe Lyon
2019-09-09 15:50 ` [ARM/FDPIC v6 13/24] [ARM] FDPIC: Force LSB bit for PC in Cortex-M architecture Christophe Lyon
     [not found]   ` <7dd95d39-c60e-4f3c-fa16-2886daf44449@arm.com>
2019-09-17 11:38     ` Wilco Dijkstra
2019-09-17 12:08       ` Christophe Lyon
2019-09-19 15:13         ` Christophe Lyon
2019-09-19 15:15           ` Kyrill Tkachov
2019-09-20 12:51             ` Matthew Malcomson
2019-09-20 14:24               ` Christophe Lyon
2019-09-09 15:50 ` [ARM/FDPIC v6 15/24] [ARM][testsuite] FDPIC: Adjust scan-assembler patterns Christophe Lyon
2019-09-09 15:51 ` [ARM/FDPIC v6 18/24] [ARM][testsuite] FDPIC: Enable tests on pie_enabled targets Christophe Lyon
2019-09-09 15:51 ` [ARM/FDPIC v6 17/24] [ARM][testsuite] FDPIC: Handle *-*-uclinux* Christophe Lyon
2019-09-09 15:51 ` [ARM/FDPIC v6 16/24] [ARM][testsuite] FDPIC: Skip tests that don't work in PIC mode Christophe Lyon
2019-09-09 15:52 ` [ARM/FDPIC v6 19/24] [ARM][testsuite] FDPIC: Adjust pr43698.c to avoid clash with uclibc Christophe Lyon
2019-09-09 15:52 ` [ARM/FDPIC v6 21/24] [ARM] FDPIC: Handle stack-protector combined patterns Christophe Lyon
2019-09-09 15:52 ` [ARM/FDPIC v6 20/24] [ARM][testsuite] FDPIC: Skip tests using architectures unsupported by FDPIC Christophe Lyon
2019-09-16 12:31   ` Christophe Lyon
2019-09-17 10:18     ` Kyrill Tkachov
2019-09-09 15:53 ` Christophe Lyon [this message]
2019-09-09 15:53 ` [ARM/FDPIC v6 24/24] [ARM] FDPIC: Handle arm*-*-uclinuxfdpiceabi in libstdc++ configure scripts Christophe Lyon
2019-09-09 15:53 ` [ARM/FDPIC v6 23/24] [ARM] FDPIC: Implement libitm support Christophe Lyon

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190909154526.11630-23-christophe.lyon@st.com \
    --to=christophe.lyon@st.com \
    --cc=gcc-patches@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).