1 # Copyright
(C
) 2003, 2004, 2005 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
2 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
, write to the Free Software
15 # Foundation
, 51 Franklin Street
, Fifth Floor
, Boston
, MA
02110-1301, USA.
17 # This file is just
'sed -e 's
/77/fortran
/g
' \
18 # -e 's
/f2c
/gfortran
' g77.exp > gfortran.exp'
20 # with some minor modifications to make it work.
23 # gfortran support library routines
27 load_lib target
-libpath.exp
30 # GFORTRAN_UNDER_TEST is the compiler under test.
34 set gpp_compile_options
""
38 # gfortran_version
-- extract and print the version number of the compiler
41 proc gfortran_version
{ } {
42 global GFORTRAN_UNDER_TEST
46 # ignore
any arguments after the command
47 set compiler
[lindex $GFORTRAN_UNDER_TEST
0]
49 # verify that the compiler
exists
50 if { [is_remote host
] ||
[which $compiler
] != 0 } then {
51 set tmp
[remote_exec host
"$compiler -v"]
52 set status [lindex $tmp
0]
53 set output
[lindex $tmp
1]
54 regexp
" version \[^\n\r\]*" $output version
55 if { $
status == 0 && [info exists version
] } then {
57 clone_output
"$compiler $version\n"
59 clone_output
"[which $compiler] $version\n"
62 clone_output
"Couldn't determine version of [which $compiler]\n"
65 # compiler does not exist
(this should have already been detected
)
66 warning
"$compiler does not exist"
71 # gfortran_link_flags
-- provide new version of gfortran_link_flags
72 #
(originally from libgloss.exp
) which knows about the gcc tree structure
75 proc gfortran_link_flags
{ paths
} {
77 global ld_library_path
78 global GFORTRAN_UNDER_TEST
84 set ld_library_path
"."
85 set shlib_ext
[get_shlib_extension
]
86 verbose
"shared lib extension: $shlib_ext"
88 if { $gccpath
!= "" } {
89 if [file
exists "${gccpath}/libgfortran/.libs/libgfortran.a"] {
90 append flags
"-L${gccpath}/libgfortran/.libs "
91 append ld_library_path
":${gccpath}/libgfortran/.libs"
93 if [file
exists "${gccpath}/libgfortran/.libs/libgfortran.${shlib_ext}"] {
94 append flags
"-L${gccpath}/libgfortran/.libs "
95 append ld_library_path
":${gccpath}/libgfortran/.libs"
97 if [file
exists "${gccpath}/libgfortran/libgforbegin.a"] {
98 append flags
"-L${gccpath}/libgfortran "
100 if [file
exists "${gccpath}/libiberty/libiberty.a"] {
101 append flags
"-L${gccpath}/libiberty "
103 append ld_library_path \
104 [gcc
-set-multilib
-library
-path $GFORTRAN_UNDER_TEST
]
107 set_ld_library_path_env_vars
113 # gfortran_init
-- called at the start of each subdir of tests
116 proc gfortran_init
{ args } {
118 global gpp_initialized
122 global gluefile wrap_flags
124 global ALWAYS_GFORTRANFLAGS
125 global TOOL_EXECUTABLE TOOL_OPTIONS
126 global GFORTRAN_UNDER_TEST
127 global TESTING_IN_BUILD_TREE
129 # We
set LC_ALL and LANG to C so that we
get the same error messages as expected.
133 if ![info exists GFORTRAN_UNDER_TEST
] then {
134 if [info exists TOOL_EXECUTABLE
] {
135 set GFORTRAN_UNDER_TEST $TOOL_EXECUTABLE
137 if { [is_remote host
] ||
! [info exists TESTING_IN_BUILD_TREE
] } {
138 set GFORTRAN_UNDER_TEST
[transform gfortran
]
140 set GFORTRAN_UNDER_TEST
[findfile $base_dir
/..
/..
/gfortran
"$base_dir/../../gfortran -B$base_dir/../../" [findfile $base_dir/gfortran "$base_dir/gfortran -B$base_dir/" [transform gfortran]]]
145 if ![is_remote host
] {
146 if { [which $GFORTRAN_UNDER_TEST
] == 0 } then {
147 perror
"GFORTRAN_UNDER_TEST ($GFORTRAN_UNDER_TEST) does not exist"
151 if ![info exists tmpdir
] {
155 if [info exists gluefile
] {
159 gfortran_maybe_build_wrapper
"${tmpdir}/gfortran-testglue.o"
161 set ALWAYS_GFORTRANFLAGS
""
163 if ![is_remote host
] {
164 if [info exists TOOL_OPTIONS
] {
165 lappend ALWAYS_GFORTRANFLAGS
"ldflags=[gfortran_link_flags [get_multilibs ${TOOL_OPTIONS}] ]"
167 lappend ALWAYS_GFORTRANFLAGS
"ldflags=[gfortran_link_flags [get_multilibs] ]"
171 if [info exists TOOL_OPTIONS
] {
172 lappend ALWAYS_GFORTRANFLAGS
"additional_flags=$TOOL_OPTIONS"
175 verbose
-log "ALWAYS_GFORTRANFLAGS set to $ALWAYS_GFORTRANFLAGS"
177 verbose
"gfortran is initialized" 3
181 # gfortran_target_compile
-- compile a source file
184 proc gfortran_target_compile
{ source dest type options
} {
186 global gluefile wrap_flags
187 global ALWAYS_GFORTRANFLAGS
188 global GFORTRAN_UNDER_TEST
190 if { [target_info needs_status_wrapper
] != "" && [info exists gluefile] } {
191 lappend options
"libs=${gluefile}"
192 lappend options
"ldflags=${wrap_flags}"
195 lappend options
"compiler=$GFORTRAN_UNDER_TEST"
197 set options
[concat
"$ALWAYS_GFORTRANFLAGS" $options]
198 set options
[dg
-additional
-files
-options $options $source
]
199 return [target_compile $source $dest $type $options
]