From: deal Date: Thu, 25 Sep 2003 15:01:11 +0000 (+0000) Subject: Include -lpthread into flags for MT compilations with icc. Don't know why it wasn... X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9dd24e6cf1298d001ec1415211f2331b1c5d297a;p=dealii-svn.git Include -lpthread into flags for MT compilations with icc. Don't know why it wasn't there before, and can't also tell why it isn't there for all the other compilers... git-svn-id: https://svn.dealii.org/trunk@8035 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/aclocal.m4 b/deal.II/aclocal.m4 index 03c375bd75..8c8ee69057 100644 --- a/deal.II/aclocal.m4 +++ b/deal.II/aclocal.m4 @@ -1056,6 +1056,7 @@ AC_DEFUN(DEAL_II_SET_MULTITHREADING_FLAGS, dnl intel_icc*) CXXFLAGSG="$CXXFLAGSG" CXXFLAGSO="$CXXFLAGSO -parallel" + LDFLAGS="$LDFLAGS -lpthread" ;; *) diff --git a/deal.II/configure b/deal.II/configure index 555cc31a7e..961722b610 100755 --- a/deal.II/configure +++ b/deal.II/configure @@ -3440,6 +3440,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext intel_icc*) CXXFLAGSG="$CXXFLAGSG" CXXFLAGSO="$CXXFLAGSO -parallel" + LDFLAGS="$LDFLAGS -lpthread" ;; *)