OSDN Git Service

* testsuite/lib/libstdc++.exp (v3_target_compile_as_c): Correct
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / lib / libstdc++.exp
1 # libstdc++ "tool init file" for DejaGNU
2
3 # Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007
4 # Free Software Foundation, Inc.
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 # 02110-1301, USA.
20
21
22 # Define callbacks and load other libraries.  This file is loaded relatively
23 # early, and before any other file we write ourselves.  "load_lib" will
24 # find anything in the DejaGNU installation tree, or in our lib directory.
25 # "load_gcc_lib" will search the core compiler's .exp collection instead.
26 #
27 # The naming rule is that dg.exp looks for "tool-" and runtest.exp looks
28 # for "tool_" when finding callbacks.  Utility routines we define for
29 # our callbacks begin with "v3-".
30 #
31 # libstdc++_* callbacks we don't define, but could:
32 # ..._option_help           prints additional --help output
33 # ..._option_proc (--foo)   process our own options
34 # ..._init (normal.exp)     called once per test file
35 # ..._finish                bracketing function for libstdc++_init
36 # ...-dg-prune              removing output text, see top of system dg.exp
37 #
38 # Useful hook:  if ${hostname}_init exists, it will be called, almost
39 # the last thing before testing begins.  This can be defined in, e.g.,
40 # ~/.dejagnurc or $DEJAGNU.
41
42 proc load_gcc_lib { filename } {
43     global srcdir
44     load_file $srcdir/../../gcc/testsuite/lib/$filename
45 }
46
47 # system routines
48 load_lib dg.exp
49 load_lib libgloss.exp
50 # compiler routines, then ours
51 load_gcc_lib target-supports.exp
52 load_gcc_lib target-supports-dg.exp
53 load_lib prune.exp
54 load_lib dg-options.exp
55 load_gcc_lib target-libpath.exp
56 load_gcc_lib wrapper.exp
57
58 # Useful for debugging.  Pass the name of a variable and the verbosity
59 # threshold (number of -v's on the command line).
60 proc v3track { var n } {
61     upvar $var val
62     verbose "++ $var is $val" $n
63 }
64
65 # Called by v3-init below.  "Static" to this file.
66 proc v3-copy-files {srcfiles} {
67     foreach f $srcfiles {
68         if { [catch { set symlink [file readlink $f] } x] } then {
69             remote_download target $f
70         } else {
71             if { [regexp "^/" "$symlink"] } then {
72                 remote_download target $symlink
73             } else {
74                 set dirname [file dirname $f]
75                 remote_download target $dirname/$symlink
76             }
77         }
78     }
79 }
80
81 # Called once, during runtest.exp setup.
82 proc libstdc++_init { testfile } {
83     global env
84     global v3-sharedlib 
85     global srcdir blddir objdir tool_root_dir
86     global cc cxx cxxflags cxxldflags
87     global includes
88     global gluefile wrap_flags
89     global ld_library_path
90     global target_triplet
91     global flags_file
92
93     # We set LC_ALL and LANG to C so that we get the same error
94     # messages as expected.
95     setenv LC_ALL C
96     setenv LANG C
97
98     set blddir [lookfor_file [get_multilibs] libstdc++-v3]
99     set flags_file "${blddir}/scripts/testsuite_flags"
100     v3track flags_file 2
101
102     # If a test doesn't have special options, use DEFAULT_CXXFLAGS.
103     # Use this variable if the behavior
104     #   1) only applies to libstdc++ testing
105     #   2) might need to be negated 
106     # In particular, some tests have to be run without precompiled
107     # headers, or without assertions.
108     global DEFAULT_CXXFLAGS
109     if ![info exists DEFAULT_CXXFLAGS] then {
110         set DEFAULT_CXXFLAGS ""
111         # Host specific goo here.
112         if { [string match "powerpc-*-darwin*" $target_triplet] } {
113             append DEFAULT_CXXFLAGS " -multiply_defined suppress"
114         } 
115     }
116     v3track DEFAULT_CXXFLAGS 2
117
118     # By default, we assume we want to run program images.
119     global dg-do-what-default
120     set dg-do-what-default run
121
122     # Copy any required data files.
123     v3-copy-files [glob -nocomplain "$srcdir/data/*.tst"]
124     v3-copy-files [glob -nocomplain "$srcdir/data/*.txt"]
125
126     # Locate libgcc.a so we don't need to account for different values of
127     # SHLIB_EXT on different platforms
128     set gccdir [lookfor_file $tool_root_dir gcc/libgcc.a]
129     if {$gccdir != ""} {
130         set gccdir [file dirname $gccdir]
131     }
132     v3track gccdir 3
133
134     # Look for shared library. (ie libstdc++.so.)
135     set v3-sharedlib 0
136     set sharedlibdir [lookfor_file $blddir src/.libs/libstdc++.so]
137     if {$sharedlibdir != ""} {
138         if { [string match "*-*-linux*" $target_triplet] && [isnative] } {
139             set v3-sharedlib 1
140             verbose -log "shared library support detected"
141         } 
142     }
143     v3track v3-sharedlib 3
144
145     # Compute what needs to be added to the existing LD_LIBRARY_PATH.
146     if {$gccdir != ""} {
147         set ld_library_path ""
148         append ld_library_path ":${gccdir}"
149         set compiler ${gccdir}/g++
150         append ld_library_path ":${blddir}/src/.libs"
151
152         if { [is_remote host] == 0 && [which $compiler] != 0 } {
153           foreach i "[exec $compiler --print-multi-lib]" {
154             set mldir ""
155             regexp -- "\[a-z0-9=_/\.-\]*;" $i mldir
156             set mldir [string trimright $mldir "\;@"]
157             if { "$mldir" == "." } {
158               continue
159             }
160             if { [llength [glob -nocomplain ${gccdir}/${mldir}/libgcc_s*.so.*]] >= 1 } {
161               append ld_library_path ":${gccdir}/${mldir}"
162             }
163           }
164         }
165
166         set_ld_library_path_env_vars
167         if [info exists env(LD_LIBRARY_PATH)] {
168           verbose -log "LD_LIBRARY_PATH = $env(LD_LIBRARY_PATH)"
169         }
170     } else {
171         set compiler [transform "g++"]
172     }
173
174     # Default settings.
175     set cxx [transform "g++"]
176     set cxxflags "-g -O2 -D_GLIBCXX_ASSERT -fmessage-length=0" 
177     set cxxldflags ""
178     set cc [transform "gcc"]
179     # Locate testsuite_hooks.h and other testsuite headers.
180     set includes "-I${srcdir}/util"
181     # Adapt the defaults for special circumstances.
182     if [is_remote host] {
183         # A remote host does not, in general, have access to the
184         # $srcdir so we copy the testsuite headers into the current
185         # directory, and then add that to the search path.
186         foreach src [glob "${srcdir}/util/*.h" \
187                           "${srcdir}/util/*.cc" \
188                           "${srcdir}/util/*/*.hpp" \
189                           "${srcdir}/util/*/*.cc" \
190                           "${srcdir}/util/*/*.hpp" \
191                           "${srcdir}/util/*/*/*.cc" \
192                           "${srcdir}/util/*/*/*.hpp" \
193                           "${srcdir}/util/*/*/*/*.cc" \
194                           "${srcdir}/util/*/*/*/*.hpp" \
195                           "${srcdir}/util/*/*/*/*/*.cc" \
196                           "${srcdir}/util/*/*/*/*/*.hpp" ] {
197             # Remove everything up to "util/..."
198             set dst [string range $src [string length "${srcdir}/"] end]
199             # Create the directory containing the file.
200             set dir [file dirname $dst]
201             remote_exec host "mkdir" [list "-p" "$dir"]
202             # Download the file.
203             set result [remote_download host $src $dst]
204             if { $result == "" } {
205                 verbose -log "Unable to download ${srcdir}/${src} to host."
206                 return "untested"
207             }
208         }
209         set includes "-Iutil"
210     } elseif { [file exists $flags_file] } {
211         # If we find a testsuite_flags file, we're testing in the build dir.
212         set cxx [exec sh $flags_file --build-cxx]
213         set cxxflags [exec sh $flags_file --cxxflags]
214         set cxxldflags [exec sh $flags_file --cxxldflags]
215         set cc [exec sh $flags_file --build-cc]
216         set includes [exec sh $flags_file --build-includes]
217     }
218
219     # Always use MO files built by this test harness.
220     set cxxflags "$cxxflags -DLOCALEDIR=\".\""
221     set ccflags "$cxxflags -DLOCALEDIR=\".\""
222
223     # If a PCH file is available, use it.  We must delay performing
224     # this check until $cxx and such have been initialized because we
225     # perform a test compilation.  (Ideally, gcc --print-file-name would
226     # list PCH files, but it does not.)
227     global PCH_CXXFLAGS
228     if ![info exists PCH_CXXFLAGS] then {
229         set src "config[pid].cc"
230         set f [open $src "w"]
231         puts $f "int main () {}"
232         close $f
233
234         set lines [v3_target_compile $src "config[pid].o" object \
235                  "additional_flags=-include additional_flags=bits/stdtr1c++.h"]
236         if {$lines == "" } {
237 #           set PCH_CXXFLAGS "-include bits/extc++.h"
238 #           set PCH_CXXFLAGS "-include bits/stdtr1c++.h"
239             set PCH_CXXFLAGS "-include bits/stdc++.h"
240         } else {
241             set PCH_CXXFLAGS ""
242         }
243         file delete $src
244         v3track PCH_CXXFLAGS 2
245     }
246
247     libstdc++_maybe_build_wrapper "${objdir}/testglue.o" "-fexceptions"
248 }
249
250 # Callback for cleanup routines.
251 proc libstdc++_exit { } {
252     global gluefile;
253
254     if [info exists gluefile] {
255         file_on_build delete $gluefile;
256         unset gluefile;
257     }
258 }
259
260 # Callback from system dg-test.
261 proc libstdc++-dg-test { prog do_what extra_tool_flags } {
262     # Set up the compiler flags, based on what we're going to do.
263     switch $do_what {
264         "preprocess" {
265             set compile_type "preprocess"
266             set output_file "[file rootname [file tail $prog]].i"
267         }
268         "compile" {
269             set compile_type "assembly"
270             set output_file "[file rootname [file tail $prog]].s"
271         }
272         "assemble" {
273             set compile_type "object"
274             set output_file "[file rootname [file tail $prog]].o"
275         }
276         "link" {
277             set compile_type "executable"
278             set output_file "./[file rootname [file tail $prog]].exe"
279         }
280         "run" {
281             set compile_type "executable"
282             # FIXME: "./" is to cope with "." not being in $PATH.
283             # Should this be handled elsewhere?
284             # YES.
285             set output_file "./[file rootname [file tail $prog]].exe"
286             # This is the only place where we care if an executable was
287             # created or not.  If it was, dg.exp will try to run it.
288             catch { remote_file build delete $output_file }
289         }
290         default {
291             perror "$do_what: not a valid dg-do keyword"
292             return ""
293         }
294     }
295
296     # Short-circut a bunch of complicated goo here for the special
297     # case of compiling a test file as a "C" file, not as C++. Why? So
298     # -nostdc++ doesn't trip us up. So all the extra object files
299     # don't trip us up. So automatically linking in libstdc++ doesn't
300     # happen. So CXXFLAGS don't error.
301     set select_compile "v3_target_compile"
302     set options ""
303     if { $extra_tool_flags != "" } {
304         verbose -log "extra_tool_flags are:"
305         verbose -log $extra_tool_flags
306         if { [string first "-x c" $extra_tool_flags ] != -1 } {
307             verbose -log "compiling and executing as C, not C++"
308             set edit_tool_flags $extra_tool_flags
309             regsub -all ".x c" $edit_tool_flags "" edit_tool_flags
310             lappend options "additional_flags=$edit_tool_flags"
311             set select_compile "v3_target_compile_as_c"
312         } else {
313             lappend options "additional_flags=$extra_tool_flags"
314         }
315     }
316
317     # There is a libstdc++_compile made for us by default (via the tool-
318     # and-target file), but the defaults are lacking in goodness.
319     set comp_output [$select_compile "$prog" "$output_file" "$compile_type" $options];
320     set comp_output [ prune_g++_output $comp_output ];
321
322     return [list $comp_output $output_file]
323 }
324
325 # True if the library supports wchar_t.
326 set v3-wchar_t 0
327
328 # True if the library supports threads.
329 set v3-threads 0
330
331 # True if the library supports symbol versioning.
332 set v3-symver 0
333
334 # Called from libstdc++-dg-test above.  Calls back into system's
335 # target_compile to actually do the work.
336 proc v3_target_compile { source dest type options } {
337     global gluefile 
338     global wrap_flags
339     global cxx
340     global cxxflags
341     global cxxldflags
342     global includes
343
344     if { [target_info needs_status_wrapper] != "" && [info exists gluefile] } {
345         lappend options "libs=${gluefile}"
346         lappend options "ldflags=${wrap_flags}"
347     }
348
349     set cxx_final $cxx
350     set cxxlibglossflags  [libgloss_link_flags]
351     set cxx_final [concat $cxx_final $cxxlibglossflags]
352     set cxx_final [concat $cxx_final $cxxflags]
353     set cxx_final [concat $cxx_final $includes]
354
355     # Flag setting based on type argument.
356     if { $type == "executable" } {
357         # Link the support objects into executables.
358         set cxx_final [concat $cxx_final $cxxldflags]
359         lappend options "additional_flags=./libtestc++.a"
360     } else {
361         if { $type == "sharedlib" } {
362             # Don't link in anything.
363             set type "executable"
364         }
365     }
366
367     lappend options "compiler=$cxx_final"
368     lappend options "timeout=600"
369
370     return [target_compile $source $dest $type $options]
371 }
372
373
374 # Called from libstdc++-dg-test above, but only for "C" compilation.
375 # Calls back into system's target_compile to actually do the work.
376 proc v3_target_compile_as_c { source dest type options } {
377     global gluefile 
378     global wrap_flags
379     global includes
380     global flags_file
381     global blddir
382     global cc
383
384     if { [target_info needs_status_wrapper] != "" && [info exists gluefile] } {
385         lappend options "libs=${gluefile}"
386         lappend options "ldflags=${wrap_flags}"
387     }
388
389     set tname [target_info name]
390     set cc_final $cc
391     set cxxlibglossflags [libgloss_link_flags]
392     set cc_final [concat $cc_final $cxxlibglossflags]
393     set cc_final [concat $cc_final $includes]
394     regsub -all {\s[-]nostdinc[+][+]} $cc_final "" cc_final
395
396     # This is needed for "C" tests, as this type of test may need the
397     # C++ includes. And if we're not testing in the build directory,
398     # the includes variable is not likely to include the necessary
399     # info.
400     if { ![file exists $flags_file] } {
401         set version [remote_exec host ${cc} -dumpversion]
402         set version [lindex $version 1]
403         set machine [remote_exec exec ${cc} -dumpmachine]
404         set machine [lindex $machine 1]
405         set comp_base_dir [remote_exec host ${cc} --print-prog-name=cc1]
406         set comp_base_dir [lindex $comp_base_dir 1]
407         set comp_base_dir [file dirname [file dirname [file dirname [file dirname [file dirname $comp_base_dir]]]]]
408         set includesbase "${comp_base_dir}/include/c++/${version}"
409         set includestarget "${includesbase}/${machine}"
410         set cc_final [concat $cc_final "-I$includesbase -I$includestarget"]
411
412         set libsup "${comp_base_dir}/lib"
413     } else {
414         set libsup "${blddir}/libsupc++/.libs"
415     }
416
417     set cc_final [concat $cc_final "-L$libsup"]
418
419     lappend options "compiler=$cc_final"
420     lappend options "timeout=600"
421
422     return [target_compile $source $dest $type $options]
423 }
424
425 # Build the support objects linked in with the libstdc++ tests.  In
426 # addition, set v3-wchar_t, v3-threads, and v3-symver appropriately.
427 proc v3-build_support { } {
428     global env
429     global srcdir
430     global v3-wchar_t
431     global v3-threads
432     global v3-symver
433     global v3-sharedlib
434
435     # Figure out whether or not the library supports certain features.
436     set v3-wchar_t 0
437     set v3-threads 0
438     set v3-symver 0
439     set libtest_objs ""
440
441     set config_src "config.cc"
442     set f [open $config_src "w"]
443     puts $f "#include <bits/c++config.h>"
444     puts $f "#include <bits/gthr.h>"
445     close $f
446     set preprocessed [v3_target_compile $config_src "" \
447                        preprocess "additional_flags=-dN"]
448     if { [string first "_GLIBCXX_USE_WCHAR_T" $preprocessed] != -1 } {
449         verbose -log "wchar_t support detected"
450         set v3-wchar_t 1
451     }
452     if { [string first "_GLIBCXX_SYMVER" $preprocessed] != -1 } {
453         verbose -log "symbol versioning support detected"
454         set v3-symver 1
455     }
456     if { [string first "__GTHREADS" $preprocessed] != -1 } {
457         verbose -log "thread support detected"
458         set v3-threads 1
459     }
460
461     # Try to build the MO files that are used by some of the locale
462     # tests.  If we can't build them, that's OK; it just means that
463     # those tests will fail.
464     foreach lang [list "fr" "de"] {
465         catch {
466             file mkdir "$lang/LC_MESSAGES"
467             remote_exec "build" "msgfmt" "-o $lang/LC_MESSAGES/libstdc++.mo $srcdir/../po/$lang.po"
468             if [is_remote host] {
469                 remote_exec "host" "mkdir" "-p $lang/LC_MESSAGES"
470                 remote_download "host" "$lang/LC_MESSAGES/libstdc++.mo" "$lang/LC_MESSAGES/libstdc++.mo"
471             }
472         }
473     }
474
475     # Build the support objects.
476     set source_files [list testsuite_abi.cc testsuite_allocator.cc \
477                           testsuite_character.cc testsuite_hooks.cc \
478                  rng/twister_rand_gen.cc io/verified_cmd_line_input.cc \
479                           io/prog_bar.cc performance/time/elapsed_timer.cc ]
480     foreach f $source_files {
481         set obj [file rootname $f].o
482         set object_file [file tail $obj]
483         # Compile with "-w" so that warnings issued by the compiler
484         # do not prevent compilation.
485         if { [v3_target_compile $srcdir/util/$f $object_file "object" \
486                   [list "incdir=$srcdir" "additional_flags=-w"]]
487              != "" } {
488             error "could not compile $f"
489         }
490         append libtest_objs "$object_file "
491     }
492
493     # Collect into libtestc++.a
494     if  [info exists env(AR_FOR_TARGET)] {
495         set ar $env(AR_FOR_TARGET)
496     } else {
497         set ar [transform "ar"]
498     }
499     set arcommand "$ar -rc ./libtestc++.a ${libtest_objs}"
500     verbose -log "$arcommand"
501     set result [lindex [local_exec "$arcommand" "" "" 300] 0]
502     verbose "link result is $result"
503     if { $result == 0 } {
504         if  [info exists env(RANLIB_FOR_TARGET)] {
505             set ranlib $env(RANLIB_FOR_TARGET)
506         } else {
507             set ranlib [transform "ranlib"]
508         }
509         set ranlibcommand "$ranlib ./libtestc++.a"
510         verbose -log "$ranlibcommand"
511         set result [lindex [local_exec "$ranlibcommand" "" "" 300] 0]
512         if { $result != 0 } {
513             error "could not link libtestc++.a"
514         }
515     }
516
517     # Build any shared objects needed for regression testing.
518     if { ${v3-sharedlib} == 1 } {
519         set source_files [list testsuite_shared.cc]
520         foreach f $source_files {
521             set object_file [file rootname $f].so
522             # Compile with "-w" so that warnings issued by the compiler
523             # do not prevent compilation.
524             if { [v3_target_compile $srcdir/util/$f $object_file "sharedlib" \
525              [list "incdir=$srcdir" "additional_flags=-w -shared -fPIC -DPIC"]]
526                  != "" } {
527                 error "could not compile $f"
528             }
529         }
530     }
531 }
532
533 proc check_v3_target_fileio { } {
534     global et_fileio_saved
535     global et_fileio_target_name
536     global tool 
537
538     if { ![info exists et_fileio_target_name] } {
539         set et_fileio_target_name ""
540     }
541
542     # If the target has changed since we set the cached value, clear it.
543     set current_target [current_target_name]
544     if { $current_target != $et_fileio_target_name } {
545         verbose "check_v3_target_fileio: `$et_fileio_target_name'" 2
546         set et_fileio_target_name $current_target
547         if [info exists et_fileio_saved] {
548             verbose "check_v3_target_fileio: removing cached result" 2
549             unset et_fileio_saved
550         }
551     }
552
553     if [info exists et_fileio_saved] {
554         verbose "check_v3_target_fileio: using cached result" 2
555     } else {
556         set et_fileio_saved 0
557
558         # Set up, compile, and execute a C++ test program that tries to use
559         # the file functions
560         set src fileio[pid].cc
561         set exe fileio[pid].x
562
563         set f [open $src "w"]
564         puts $f "#include <sys/types.h>"
565         puts $f "#include <sys/stat.h>"
566         puts $f "#include <fcntl.h>"
567         puts $f "#include <unistd.h>"
568         puts $f "#include <errno.h>"
569         puts $f "using namespace std;"  
570         puts $f "int main ()"
571         puts $f "{"
572         puts $f "  int fd  = open (\".\", O_RDONLY);"
573         puts $f "  if (fd == -1)"
574         puts $f "  {"
575         puts $f "    int err = errno;"
576         puts $f "    if (err == EIO || err == ENOSYS)"
577         puts $f "      return 1;"
578         puts $f "  }"
579         puts $f "  else"
580         puts $f "    close (fd);"
581         puts $f "  return 0;"
582         puts $f "}" 
583         close $f
584
585         set lines [v3_target_compile $src $exe executable ""]
586         file delete $src
587
588         if [string match "" $lines] {
589             # No error message, compilation succeeded.
590             set result [${tool}_load "./$exe" "" ""]
591             set status [lindex $result 0]
592             remote_file build delete $exe
593
594             verbose "check_v3_target_fileio: status is <$status>" 2
595
596             if { $status == "pass" } {
597                 set et_fileio_saved 1
598             }
599         } else {
600             verbose "check_v3_target_fileio: compilation failed" 2
601         }
602     }
603     return $et_fileio_saved
604 }
605
606 # Eventually we want C90/C99 determining and switching from this.
607 proc check_v3_target_c_std { } {
608     global et_c_std_saved
609     global et_c_std_target_name
610     global tool 
611
612     if { ![info exists et_c_std_target_name] } {
613         set et_c_std_target_name ""
614     }
615
616     # If the target has changed since we set the cached value, clear it.
617     set current_target [current_target_name]
618     if { $current_target != $et_c_std_target_name } {
619         verbose "check_v3_target_c_std: `$et_c_std_target_name'" 2
620         set et_c_std_target_name $current_target
621         if [info exists et_c_std_saved] {
622             verbose "check_v3_target_c_std: removing cached result" 2
623             unset et_c_std_saved
624         }
625     }
626
627     if [info exists et_c_std_saved] {
628         verbose "check_v3_target_c_std: using cached result" 2
629     } else {
630         set et_c_std_saved 0
631
632         # Set up, compile, and execute a C++ test program that tries to use
633         # C99 functionality.
634         # For math bits, could use check_effective_target_c99_math.
635         set src fileio[pid].cc
636         set exe fileio[pid].x
637
638         set f [open $src "w"]
639         puts $f "#include <tr1/cmath>"
640         puts $f "#include <cstdlib>"
641         puts $f "int main ()"
642         puts $f "{"
643         puts $f "  float f = 45.55;"
644         puts $f "  int i = std::tr1::isnan(f);"
645         puts $f "  "
646         puts $f "  using std::wctomb;"
647         puts $f "  return 0;"
648         puts $f "}" 
649         close $f
650
651         set lines [v3_target_compile $src $exe executable ""]
652         file delete $src
653
654         if [string match "" $lines] {
655             # No error message, compilation succeeded.
656             set result [${tool}_load "./$exe" "" ""]
657             set status [lindex $result 0]
658             remote_file build delete $exe
659
660             verbose "check_v3_target_c_std: status is <$status>" 2
661
662             if { $status == "pass" } {
663                 set et_c_std_saved 1
664             }
665         } else {
666             verbose "check_v3_target_c_std: compilation failed" 2
667         }
668     }
669     return $et_c_std_saved
670 }
671
672 proc check_v3_target_sharedlib { } {
673     global v3-sharedlib
674     return ${v3-sharedlib}
675 }
676
677 proc check_v3_target_time { } {
678     global et_time_saved
679     global et_time_target_name
680     global tool 
681
682     if { ![info exists et_time_target_name] } {
683         set et_time_target_name ""
684     }
685
686     # If the target has changed since we set the cached value, clear it.
687     set current_target [current_target_name]
688     if { $current_target != $et_time_target_name } {
689         verbose "check_v3_target_time: `$et_time_target_name'" 2
690         set et_time_target_name $current_target
691         if [info exists et_time_saved] {
692             verbose "check_v3_target_time: removing cached result" 2
693             unset et_time_saved
694         }
695     }
696
697     if [info exists et_time_saved] {
698         verbose "check_v3_target_time: using cached result" 2
699     } else {
700         set et_time_saved 0
701
702         # Set up and compile a C++ test program that tries to use
703         # the time function
704         set src time[pid].cc
705         set exe time[pid].x
706
707         set f [open $src "w"]
708         puts $f "#include <time.h>"
709         puts $f "using namespace std;"  
710         puts $f "int main ()"
711         puts $f "{"
712         puts $f "  time (0);"   
713         puts $f "}" 
714         close $f
715
716         set lines [v3_target_compile $src $exe executable ""]
717         file delete $src
718
719         if [string match "" $lines] {
720             # No error message, compilation succeeded.
721             verbose "check_v3_target_time: compilation succeeded" 2
722             remote_file build delete $exe
723             set et_time_saved 1
724         } else {
725             verbose "check_v3_target_time: compilation failed" 2
726         }
727     }
728     return $et_time_saved
729 }
730
731 proc check_v3_target_namedlocale { } {
732     global et_namedlocale_saved
733     global et_namedlocale_target_name
734     global tool 
735
736     if { ![info exists et_namedlocale_target_name] } {
737         set et_namedlocale_target_name ""
738     }
739
740     # If the target has changed since we set the cached value, clear it.
741     set current_target [current_target_name]
742     if { $current_target != $et_namedlocale_target_name } {
743         verbose "check_v3_target_namedlocale: `$et_namedlocale_target_name'" 2
744         set et_namedlocale_target_name $current_target
745         if [info exists et_namedlocale_saved] {
746             verbose "check_v3_target_namedlocale: removing cached result" 2
747             unset et_namedlocale_saved
748         }
749     }
750
751     if [info exists et_namedlocale_saved] {
752         verbose "check_v3_target_namedlocale: using cached result" 2
753     } else {
754         set et_namedlocale_saved 0
755
756         # Set up, compile, and execute a C++ test program that tries to use
757         # all the required named locales.
758         set src nlocale[pid].cc
759         set exe nlocale[pid].x
760
761         set f [open $src "w"]
762         puts $f "#include <locale>"
763         puts $f "using namespace std;"  
764         puts $f "int main ()"
765         puts $f "{"
766         puts $f "  try" 
767         puts $f "  {" 
768         puts $f "     locale(\"\");"
769         puts $f "     locale(\"de_DE\");"
770         puts $f "     locale(\"de_DE.ISO-8859-15@euro\");"
771         puts $f "     locale(\"de_DE@euro\");"
772         puts $f "     locale(\"en_HK\");"
773         puts $f "     locale(\"en_PH\");"
774         puts $f "     locale(\"en_US\");"
775         puts $f "     locale(\"en_US.ISO-8859-1\");"
776         puts $f "     locale(\"en_US.ISO-8859-15\");"
777         puts $f "     locale(\"en_US.UTF-8\");"
778         puts $f "     locale(\"es_ES\");"
779         puts $f "     locale(\"es_MX\");"
780         puts $f "     locale(\"fr_FR\");"
781         puts $f "     locale(\"fr_FR@euro\");"
782         puts $f "     locale(\"is_IS\");"
783         puts $f "     locale(\"is_IS.UTF-8\");"
784         puts $f "     locale(\"it_IT\");"
785         puts $f "     locale(\"ja_JP.eucjp\");"
786         puts $f "     locale(\"se_NO.UTF-8\");"
787         puts $f "     locale(\"ta_IN\");"
788         puts $f "     locale(\"zh_TW\");"
789         puts $f "     return 0;"
790         puts $f "  }"
791         puts $f "  catch(...)"
792         puts $f "  {"
793         puts $f "     return 1;"
794         puts $f "  }"   
795         puts $f "}"
796         close $f
797
798         set lines [v3_target_compile $src $exe executable ""]
799         file delete $src
800
801         if [string match "" $lines] {
802             # No error message, compilation succeeded.
803             set result [${tool}_load "./$exe" "" ""]
804             set status [lindex $result 0]
805             remote_file build delete $exe
806
807             verbose "check_v3_target_namedlocale: status is <$status>" 2
808
809             if { $status == "pass" } {
810                 set et_namedlocale_saved 1
811             }
812         } else {
813             verbose "check_v3_target_namedlocale: compilation failed" 2
814         }
815     }
816     return $et_namedlocale_saved
817 }
818
819 proc check_v3_target_debug_mode { } {
820     global cxxflags
821     global et_debug_mode
822
823     global tool 
824
825     if { ![info exists et_debug_mode_target_name] } {
826         set et_debug_mode_target_name ""
827     }
828
829     # If the target has changed since we set the cached value, clear it.
830     set current_target [current_target_name]
831     if { $current_target != $et_debug_mode_target_name } {
832         verbose "check_v3_target_debug_mode: `$et_debug_mode_target_name'" 2
833         set et_debug_mode_target_name $current_target
834         if [info exists et_debug_mode] {
835             verbose "check_v3_target_debug_mode: removing cached result" 2
836             unset et_debug_mode
837         }
838     }
839
840     if [info exists et_debug_mode] {
841         verbose "check_v3_target_debug_mode: using cached result" 2
842     } else {
843         set et_debug_mode 0
844
845         # Set up, compile, and execute a C++ test program that depends
846         # on debug mode working.
847         set src debug_mode[pid].cc
848         set exe debug_mode[pid].exe
849
850         set f [open $src "w"]
851         puts $f "#include <string>"
852         puts $f "using namespace std;"  
853         puts $f "int main()"
854         puts $f "{ return 0; }"
855         close $f
856
857         set cxxflags_saved $cxxflags
858         set cxxflags "$cxxflags -Werror -O0 -D_GLIBCXX_DEBUG"
859         set lines [v3_target_compile $src $exe executable ""]
860         set cxxflags $cxxflags_saved
861         file delete $src
862
863         if [string match "" $lines] {
864             # No error message, compilation succeeded.
865             set et_debug_mode 1
866         }
867     }
868     verbose "check_v3_target_debug_mode: $et_debug_mode" 2
869     return $et_debug_mode
870 }