diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2015-12-10 05:45:58 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2015-12-10 05:45:58 +0000 |
commit | 5ebd7badfb495172b0e77ba594aa3c766f626b82 (patch) | |
tree | 5654f8586f8560e97a787664b7213e9807c5b7b6 /autoconf | |
parent | 54fd4d436030f4fa15e8b9cd6643a9255890144c (diff) |
[OPENMP] Make -fopenmp to turn on OpenMP support by default.
Patch turns on OpenMP support in clang by default after fixing OpenMP buildbots.
Differential Revision: http://reviews.llvm.org/D13802
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@255222 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r-- | autoconf/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac index 16535dfba4a..02ab161e3b0 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -1343,7 +1343,7 @@ AC_DEFINE_UNQUOTED(DEFAULT_SYSROOT,"$withval", AC_ARG_WITH(clang-default-openmp-runtime, AS_HELP_STRING([--with-clang-default-openmp-runtime], [The default OpenMP runtime for Clang.]),, - withval="libgomp") + withval="libomp") AC_DEFINE_UNQUOTED(CLANG_DEFAULT_OPENMP_RUNTIME,"$withval", [Default OpenMP runtime used by -fopenmp.]) |