Make check_effective_target_c++ work for libstdc++
authorJonathan Wakely <jwakely@redhat.com>
Sun, 31 Jul 2016 13:02:17 +0000 (14:02 +0100)
committerJonathan Wakely <redi@gcc.gnu.org>
Sun, 31 Jul 2016 13:02:17 +0000 (14:02 +0100)
* lib/target-supports.exp (check_effective_target_c): Fix indentation.
(check_effective_target_c++): Likewise. Also match for libstdc++.

From-SVN: r238916

gcc/testsuite/ChangeLog
gcc/testsuite/lib/target-supports.exp

index 829d89750372a6b1ffe2de2c1c84a0a6e495c6f9..ab7ab94b2de4326c6a141cb8b4e3a6278f4a1866 100644 (file)
@@ -1,3 +1,8 @@
+2016-07-31  Jonathan Wakely  <jwakely@redhat.com>
+
+       * lib/target-supports.exp (check_effective_target_c): Fix indentation.
+       (check_effective_target_c++): Likewise. Also match for libstdc++.
+
 2016-07-30  Steven G. Kargl <kargl@gcc.gnu.org>
 
        PR fortran/41922
index 770268f3e2f86cee95c8d7d15c79a7476e36c44b..9c5194d0d9a29249d3809871ca19baf553c25a68 100644 (file)
@@ -7001,9 +7001,9 @@ proc check_effective_target_masm_intel  {} {
 # Return 1 if the language for the compiler under test is C.
 
 proc check_effective_target_c { } {
- global tool
   global tool
     if [string match $tool "gcc"] {
-   return 1
+       return 1
     }
  return 0
 }
@@ -7011,9 +7011,9 @@ proc check_effective_target_c { } {
 # Return 1 if the language for the compiler under test is C++.
 
 proc check_effective_target_c++ { } {
- global tool
-    if [string match $tool "g++"] {
-   return 1
   global tool
+    if { [string match $tool "g++"] || [string match $tool "libstdc++"] } {
+       return 1
     }
  return 0
 }