2011-01-01 16:34:07 +01:00
|
|
|
# Copyright 2004, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
|
2004-04-01 20:42:08 +02:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
2007-08-23 20:14:19 +02:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
2004-04-01 20:42:08 +02:00
|
|
|
# (at your option) any later version.
|
2007-08-23 20:14:19 +02:00
|
|
|
#
|
2004-04-01 20:42:08 +02:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2007-08-23 20:14:19 +02:00
|
|
|
#
|
2004-04-01 20:42:08 +02:00
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-08-23 20:14:19 +02:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2004-04-01 20:42:08 +02:00
|
|
|
|
2004-04-01 02:51:13 +02:00
|
|
|
# Compile some Ada code.
|
|
|
|
|
|
|
|
proc gdb_compile_ada {source dest type options} {
|
|
|
|
|
2005-02-03 04:58:53 +01:00
|
|
|
set srcdir [file dirname $source]
|
|
|
|
set gprdir [file dirname $srcdir]
|
2004-04-01 02:51:13 +02:00
|
|
|
set objdir [file dirname $dest]
|
|
|
|
|
|
|
|
append options " ada"
|
2005-02-03 04:58:53 +01:00
|
|
|
append options " additional_flags=-P$gprdir/gnat_ada"
|
|
|
|
append options " additional_flags=-XSRC=[file tail $srcdir]"
|
|
|
|
append options " additional_flags=-XOBJ=$objdir"
|
2004-04-01 02:51:13 +02:00
|
|
|
|
2005-02-03 04:58:53 +01:00
|
|
|
set result [target_compile [file tail $source] $dest $type $options]
|
2004-04-01 02:51:13 +02:00
|
|
|
|
|
|
|
# The Ada build always produces some output, even when the build
|
|
|
|
# succeeds. Thus, we can not use the output the same way we do in
|
|
|
|
# gdb_compile to determine whether the build has succeeded or not.
|
|
|
|
# We therefore simply check whether the dest file has been created
|
|
|
|
# or not. Unless not present, the build has succeeded.
|
* lib/gdb.exp (gdb_compile_test): New.
(skip_ada_tests, skip_java_tests): New.
(gdb_compile): Use gdb_compile_test for f77.
* lib/ada.exp (gdb_compile_ada): Use gdb_compile_test to record result.
* lib/java.exp (compile_java_from_source): Remove runtests check,
use gdb_compile_test to record result.
* gdb.ada/packed_array.exp, gdb.ada/fixed_points.exp,
gdb.ada/exec_changed.exp, gdb.ada/start.exp,
gdb.ada/watch_arg.exp, gdb.ada/null_record.exp,
gdb.ada/array_return.exp, gdb.ada/arrayidx.exp,
gdb.mi/mi-var-child-f.exp, gdb.fortran/types.exp,
gdb.fortran/array-element.exp, gdb.fortran/subarray.exp,
gdb.fortran/derived-type.exp, gdb.fortran/exprs.exp,
gdb.java/jmisc.exp, gdb.java/jmisc1.exp, gdb.java/jprint.exp,
gdb.java/jv-print.exp, gdb.java/jmain.exp: Add language skip,
adjust gdb_compile invocations.
2009-11-10 11:16:10 +01:00
|
|
|
if [file exists $dest] { set result "" }
|
|
|
|
gdb_compile_test $source $result
|
|
|
|
return $result
|
2004-04-01 02:51:13 +02:00
|
|
|
}
|
|
|
|
|