V850 Linker: do not complain about RWX segments.
authorNick Clifton <nickc@redhat.com>
Thu, 3 Nov 2022 16:26:52 +0000 (16:26 +0000)
committerNick Clifton <nickc@redhat.com>
Thu, 3 Nov 2022 16:27:31 +0000 (16:27 +0000)
PR 29748
* configure.tgt (ac_default_ld_warn_rwx_segments): Set to 0 for
the V850.

ld/ChangeLog
ld/configure.tgt

index 170ddb044188f457206a325c0e1a92bda0f3598b..8f0528ffb3cff6175dc55d745f7e7ad4f10c9b56 100644 (file)
@@ -1,3 +1,9 @@
+2022-11-03  Nick Clifton  <nickc@redhat.com>
+
+       PR 29748
+       * configure.tgt (ac_default_ld_warn_rwx_segments): Set to 0 for
+       the V850.
+
 2022-11-03  Nick Clifton  <nickc@redhat.com>
 
        PR 29741
index 97639880d7eb527e2d0fac9890ee92dd28e779d7..741b246f67ef5253ce2c556d43022628cd7c0e6e 100644 (file)
@@ -47,7 +47,7 @@ targ64_extra_libpath=
 
 if test "${ac_default_ld_warn_rwx_segments}" = unset; then
   case "${targ}" in
-      # The CRIS default linker script yields just one segment
+      # The CRIS and V850 default linker scripts yields just one segment
       # as intended, so a rwx segment warning is not helpful.
       # The HPPA's and SPARC's PLT sections use a constructed trampoline
       # hence it needs to have a RWX segment.
@@ -55,7 +55,8 @@ if test "${ac_default_ld_warn_rwx_segments}" = unset; then
     cris-*-* | crisv32-*-* | \
     hppa*-*-* | \
     mips*-*-* | \
-    sparc*-*-*)
+    sparc*-*-* | \
+    v850*-*-*)
       ac_default_ld_warn_rwx_segments=0
       ;;
     *)