Since FDPIC does not support -static, skip the related tests.
2019-09-10 Christophe Lyon <christophe.lyon@st.com>
gcc/testsuite/
* lib/target-supports.exp (check_effective_target_static): Disable
for ARM FDPIC target.
From-SVN: r275583
+2019-09-10 Christophe Lyon <christophe.lyon@st.com>
+
+ * lib/target-supports.exp (check_effective_target_static): Disable
+ for ARM FDPIC target.
+
2019-09-10 Christophe Lyon <christophe.lyon@st.com>
* gcc.target/arm/pr43698.c (bswap_32): Rename as my_bswap_32.
# 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"]