1 # Copyright 2004-2022 Free Software Foundation, Inc.
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 # Call target_compile with SOURCE DEST TYPE and OPTIONS as argument,
17 # after having temporarily changed the current working directory to
20 proc target_compile_ada_from_dir {builddir source dest type options} {
22 set board [target_info name]
23 set save_multilib_flag [board_info $board multilib_flags]
25 foreach op $save_multilib_flag {
26 if { $op == "-pie" || $op == "-no-pie" } {
27 # Pretend gnatmake supports -pie/-no-pie, route it to
29 append multilib_flag " -largs $op -margs"
31 append multilib_flag " $op"
34 if { $multilib_flag != "" } {
35 unset_board_info "multilib_flags"
36 set_board_info multilib_flags "$multilib_flag"
41 return [target_compile $source $dest $type $options]
45 if { $save_multilib_flag != "" } {
46 unset_board_info "multilib_flags"
47 set_board_info multilib_flags $save_multilib_flag
50 return -options $options $result
53 # Compile some Ada code. Return "" if the compile was successful.
55 proc gdb_compile_ada_1 {source dest type options} {
57 set srcdir [file dirname $source]
58 set gprdir [file dirname $srcdir]
59 set objdir [file dirname $dest]
63 # Although strictly not necessary, we force the recompilation
64 # of all units (additional_flags=-f). This is what is done
65 # when using GCC to build programs in the other languages,
66 # and it avoids using a stray objfile file from a long-past
69 append options " additional_flags=-f"
70 append options " additional_flags=-I$srcdir"
72 set result [target_compile_ada_from_dir \
73 $objdir [file tail $source] $dest $type $options]
75 # The Ada build always produces some output, even when the build
76 # succeeds. Thus, we can not use the output the same way we do in
77 # gdb_compile to determine whether the build has succeeded or not.
78 # We therefore simply check whether the dest file has been created
79 # or not. Unless not present, the build has succeeded.
80 if [file exists $dest] { set result "" }
84 # Compile some Ada code. Generate "PASS: foo.exp: compilation SOURCE" if the
85 # compile was successful.
87 proc gdb_compile_ada {source dest type options} {
88 set result [gdb_compile_ada_1 $source $dest $type $options]
90 gdb_compile_test $source $result
94 # Like standard_testfile, but for Ada. Historically the Ada tests
95 # used a different naming convention from many of the other gdb tests,
96 # and this difference was preserved during the conversion to
97 # standard_testfile. DIR defaults to the base name of the test case;
98 # but can be overridden to find sources in a different subdirectory of
101 proc standard_ada_testfile {base_file {dir ""}} {
102 global gdb_test_file_name srcdir subdir
103 global testdir testfile srcfile binfile
106 set testdir $gdb_test_file_name
111 set testfile $base_file
112 set srcfile $srcdir/$subdir/$testdir/$testfile.adb
113 set binfile [standard_output_file $testfile]
116 # A helper function to find the appropriate version of a tool.
117 # TOOL is the tool's name, e.g., "gnatbind" or "gnatlink".
119 proc find_ada_tool {tool} {
120 set upper [string toupper $tool]
122 set targname ${upper}_FOR_TARGET
124 if {[info exists $targname]} {
129 set root "$tool_root_dir/gcc"
132 if {![is_remote host]} {
133 set result [lookfor_file $root $tool]
134 if { $result != "" && $tool == "gnatlink" } {
135 set result "$result --GCC=$root/xgcc -B$root"
140 set result [transform $tool]
146 # Return 1 if gnatmake is at least version $MAJOR.x.x
148 proc gnatmake_version_at_least { major } {
149 set gnatmake [gdb_find_gnatmake]
150 set gnatmake [lindex [split $gnatmake] 0]
151 if {[catch {exec $gnatmake --version} output]} {
154 if { [regexp {GNATMAKE ([^ .]+).([^ .]+).([^ .]+)} $output \
155 match gnatmake_major gnatmake_minor gnatmake_micro] } {
156 if { $gnatmake_major >= $major } {
167 # Return 1 if the GNAT runtime appears to have debug info.
169 gdb_caching_proc gnat_runtime_has_debug_info {
172 set src "$srcdir/lib/gnat_debug_info_test.adb"
173 set dst [standard_output_file "gnat_debug_info_test"]
175 if { [gdb_compile_ada_1 $src $dst executable {debug}] != "" } {
181 if { ! [runto "GNAT_Debug_Info_Test"] } {
187 gdb_test_multiple "whatis __gnat_debug_raise_exception" "" {
188 -re -wrap "type = <text variable, no debug info>" { }
189 -re -wrap "type = void" {
193 # Some other unexpected output...
198 return $has_debug_info