diff options
author | Balaji V. Iyer <balaji.v.iyer@intel.com> | 2013-11-05 14:43:37 +0000 |
---|---|---|
committer | Balaji V. Iyer <bviyer@gcc.gnu.org> | 2013-11-05 06:43:37 -0800 |
commit | 186bc2870333e62468be357ddabd8a4f17f96cdf (patch) | |
tree | dd91c9f8f3bea5f980d10df94f6cf14d6e21ab0c | |
parent | 6e8fd64f5a392278b2fc94f2174316a1dd3bc068 (diff) | |
download | gcc-186bc2870333e62468be357ddabd8a4f17f96cdf.zip gcc-186bc2870333e62468be357ddabd8a4f17f96cdf.tar.gz gcc-186bc2870333e62468be357ddabd8a4f17f96cdf.tar.bz2 |
Disable libcilkrts when C++ is not used.
2013-11-04 Balaji V. Iyer <balaji.v.iyer@intel.com>
* configure.ac: Added libcilkrts to noconfig list when C++ is not
supported.
* configure: Regenerated.
From-SVN: r204396
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2013-11-04 Balaji V. Iyer <balaji.v.iyer@intel.com> + + * configure.ac: Added libcilkrts to noconfig list when C++ is not + supported. + * configure: Regenerated. + 2013-11-01 Trevor Saunders <tsaunders@mozilla.com> * MAINTAINERS (Write After Approval): Add myself. @@ -6630,7 +6630,7 @@ esac case ,${enable_languages}, in *,c++,*) ;; *) - noconfigdirs="$noconfigdirs target-libitm target-libsanitizer target-libvtv" + noconfigdirs="$noconfigdirs target-libcilkrts target-libitm target-libsanitizer target-libvtv" ;; esac diff --git a/configure.ac b/configure.ac index 140877f..30190d6 100644 --- a/configure.ac +++ b/configure.ac @@ -2061,7 +2061,7 @@ esac case ,${enable_languages}, in *,c++,*) ;; *) - noconfigdirs="$noconfigdirs target-libitm target-libsanitizer target-libvtv" + noconfigdirs="$noconfigdirs target-libcilkrts target-libitm target-libsanitizer target-libvtv" ;; esac |