From: Arnaud Charlet Date: Wed, 3 Aug 2011 14:32:03 +0000 (+0000) Subject: * lib/gnat-dg.exp: Use gnatmake -c -u to compile a single file. X-Git-Tag: upstream/12.2.0~82355 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4a174dbf0917ac3e6759f91be393f55c5dbeb840;p=platform%2Fupstream%2Fgcc.git * lib/gnat-dg.exp: Use gnatmake -c -u to compile a single file. From-SVN: r177273 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 59175c6..ae7be59 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2011-08-03 Arnaud Charlet + + * lib/gnat-dg.exp: Use gnatmake -c -u to compile a single file. + 2011-08-03 H.J. Lu PR target/47744 diff --git a/gcc/testsuite/lib/gnat-dg.exp b/gcc/testsuite/lib/gnat-dg.exp index e394d3f..e6fe07e 100644 --- a/gcc/testsuite/lib/gnat-dg.exp +++ b/gcc/testsuite/lib/gnat-dg.exp @@ -28,6 +28,7 @@ proc lremove {list_variable value} { proc gnat-dg-test { prog do_what extra_tool_flags } { if { $do_what == "compile" } { lappend extra_tool_flags "-c" + lappend extra_tool_flags "-u" } set result [gcc-dg-test-1 gnat_target_compile $prog $do_what $extra_tool_flags]