[gdb/testsuite] Handle precise-aligned-alloc.c for remote host
authorTom de Vries <tdevries@suse.de>
Fri, 17 Mar 2023 15:06:39 +0000 (16:06 +0100)
committerTom de Vries <tdevries@suse.de>
Fri, 17 Mar 2023 15:06:39 +0000 (16:06 +0100)
With test-case gdb.arch/i386-sse.exp (and likewise gdb.arch/i386-avx.exp) and
host board local-remote-host-notty and target board native-gdbserver I run
into:
...
gdb compile failed, i386-sse.c:68:10: fatal error: \
  ../lib/precise-aligned-alloc.c: No such file or directory
 #include "../lib/precise-aligned-alloc.c"
          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
...

Fix this using '#include "precise-aligned-alloc.c"' and making that work with
non-remote and remote host.

Tested on x86_64-linux.

gdb/testsuite/gdb.arch/i386-avx.c
gdb/testsuite/gdb.arch/i386-avx.exp
gdb/testsuite/gdb.arch/i386-sse.c
gdb/testsuite/gdb.arch/i386-sse.exp
gdb/testsuite/lib/gdb.exp

index 28c407db3971365fced5d3244d88cd4eb9409c83..b778b3f1666534595a37d1219e57f0c0087da2e0 100644 (file)
@@ -50,7 +50,7 @@ v8sf_t data_orig[] =
 #endif
   };
 
-#include "../lib/precise-aligned-alloc.c"
+#include "precise-aligned-alloc.c"
 
 int
 main (int argc, char **argv)
index ad2cb5852d1570b2cb992a9eeed125df3f3d15ef..55166849cde537ab7e24cd4c1535a684ec87354e 100644 (file)
@@ -30,6 +30,8 @@ set flags { debug }
 # C11 for _Alignas, gnu for asm.
 lappend flags additional_flags=-std=gnu11
 
+lappend_include_file flags $srcdir/lib/precise-aligned-alloc.c
+
 if { [test_compiler_info gcc*] || [test_compiler_info clang*] } {
     lappend flags "additional_flags=-mavx -I${srcdir}/.."
 }
index a5424f5b52a666c5f1efd8c0822ff961538e270a..8b1b0ec144bf43b8b4c1ff1b603baf032d6d0485 100644 (file)
@@ -65,7 +65,7 @@ have_sse (void)
     return 0;
 }
 
-#include "../lib/precise-aligned-alloc.c"
+#include "precise-aligned-alloc.c"
 
 int
 main (int argc, char **argv)
index 6df98ec1219bde1abc1c1144c33529dd447f6c57..3c66589ce496c5e0e41e87ce812a76705b40e47a 100644 (file)
@@ -32,6 +32,8 @@ if { [test_compiler_info gcc*] || [test_compiler_info clang*] } {
     lappend flags "additional_flags=-msse -I${srcdir}/.."
 }
 
+lappend_include_file flags $srcdir/lib/precise-aligned-alloc.c
+
 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable \
          $flags] != "" } {
     unsupported "compiler does not support SSE"
index 8b1127ce0bc2e29423bd09ea712797476aa422a0..0e69bcab28820a35460c257ee74a0e5dc4590562 100644 (file)
@@ -9491,5 +9491,21 @@ gdb_caching_proc have_compile_flag { flag } {
                additional_flags=$flag]
 }
 
+
+# Handle include file FILE, and if necessary update compiler flags variable
+# FLAGS.
+
+proc lappend_include_file { flags file } {
+    upvar $flags up_flags
+    if { [is_remote host] } {
+       gdb_remote_download host $file
+    } else {
+       set dir [file dirname $file]
+       if { $dir != [file join $::srcdir $::subdir] } {
+           lappend up_flags "additional_flags=-I$dir"
+       }
+    }
+}
+
 # Always load compatibility stuff.
 load_lib future.exp