[llvm] r238390 - [omp] Actually provide a default OpenMP runtime -- libgomp for now.

Chandler Carruth chandlerc at gmail.com
Wed May 27 19:17:15 PDT 2015


Author: chandlerc
Date: Wed May 27 21:17:15 2015
New Revision: 238390

URL: http://llvm.org/viewvc/llvm-project?rev=238390&view=rev
Log:
[omp] Actually provide a default OpenMP runtime -- libgomp for now.

Modified:
    llvm/trunk/autoconf/configure.ac
    llvm/trunk/configure

Modified: llvm/trunk/autoconf/configure.ac
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/autoconf/configure.ac?rev=238390&r1=238389&r2=238390&view=diff
==============================================================================
--- llvm/trunk/autoconf/configure.ac (original)
+++ llvm/trunk/autoconf/configure.ac Wed May 27 21:17:15 2015
@@ -1340,7 +1340,7 @@ AC_DEFINE_UNQUOTED(DEFAULT_SYSROOT,"$wit
 AC_ARG_WITH(clang-default-openmp-runtime,
   AS_HELP_STRING([--with-clang-default-openmp-runtime],
     [The default OpenMP runtime for Clang.]),,
-    withval="")
+    withval="libgomp")
 AC_DEFINE_UNQUOTED(CLANG_DEFAULT_OPENMP_RUNTIME,"$withval",
                    [Default OpenMP runtime used by -fopenmp.])
 

Modified: llvm/trunk/configure
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/configure?rev=238390&r1=238389&r2=238390&view=diff
==============================================================================
--- llvm/trunk/configure (original)
+++ llvm/trunk/configure Wed May 27 21:17:15 2015
@@ -5954,7 +5954,7 @@ _ACEOF
 if test "${with_clang_default_openmp_runtime+set}" = set; then
   withval=$with_clang_default_openmp_runtime;
 else
-  withval=""
+  withval="libgomp"
 fi
 
 





More information about the llvm-commits mailing list