]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
For test for PR 29072 when the linker is configured with --enable-default-execstack=no.
authorNick Clifton <nickc@redhat.com>
Wed, 21 Jun 2023 10:47:19 +0000 (11:47 +0100)
committerNick Clifton <nickc@redhat.com>
Wed, 21 Jun 2023 10:47:19 +0000 (11:47 +0100)
  PR 29072
  * testsuite/ld-elf/elf.exp (target_defaults_to_execstack): Always return false for linkers configured with the --enable-default-execstack=no option.

ld/ChangeLog
ld/testsuite/ld-elf/elf.exp

index 8fd6504fa6ef9e2015b976b948c52f5d3f1f8ced..1467128eb6122cec9891d6b43860e0de40cdc567 100644 (file)
@@ -1,3 +1,10 @@
+2023-06-21  Nick Clifton  <nickc@redhat.com>
+
+       PR 29072
+       * testsuite/ld-elf/elf.exp (target_defaults_to_execstack): Always
+       return false for linkers configured with the --enable-default-execstack=no
+       option.
+
 2023-06-14  Nick Clifton  <nickc@redhat.com>
 
        PR 30374
index cf0e949a966bd747a81e14b105442628784879b5..ca345e865c220f209f0e45a37da9862a41220157 100644 (file)
@@ -180,6 +180,21 @@ if { [check_gc_sections_available] && ![istarget "v850-*-*"] } {
 }
 
 proc target_defaults_to_execstack {} {
+    global base_dir
+
+    # If the linker has been configured with --enable-default-execstack=no then
+    # this proc should always return 0.
+    if { [file exists $base_dir/config.status] } {
+       set status [remote_exec host grep "enable-default-execstack=no" $base_dir/config.status]
+       if { [lindex $status 0] == 0 } {
+           return 0
+       } else {
+           verbose -log "$base_dir/config.status does not contain enable-default-execstack=no"
+       }
+    } else {
+       verbose -log "there is no file $base_dir/config.status"
+    }
+    
     if {   [istarget "aarch64*-*-*"]
        || [istarget "arc*-*-*"]
        || [istarget "cris*-*-*"]