From b8f1a1779fcbcc997140f41aceb09aff53cb8490 Mon Sep 17 00:00:00 2001 From: Brian West Date: Wed, 19 Mar 2014 14:33:31 -0500 Subject: [PATCH] Support Intel ICC --- configure.ac | 6 ++++++ libs/openzap/configure.ac | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/configure.ac b/configure.ac index a9d81d0be2..f37d7897a6 100644 --- a/configure.ac +++ b/configure.ac @@ -257,6 +257,12 @@ elif test "x${ax_cv_c_compiler_vendor}" = "xgnu" ; then SOLINK="-shared -Xlinker -x" ;; esac +elif test "x${ax_cv_c_compiler_vendor}" = "xintel" ; then + case "$host" in + *) + SOLINK="-shared -Xlinker -x" + ;; + esac else AC_ERROR([Please update configure.in with SOLINK values for your compiler]) fi diff --git a/libs/openzap/configure.ac b/libs/openzap/configure.ac index 984a788927..734d1c9f70 100644 --- a/libs/openzap/configure.ac +++ b/libs/openzap/configure.ac @@ -101,6 +101,12 @@ elif test "x${ax_cv_c_compiler_vendor}" = "xgnu" ; then SOLINK="-shared -Xlinker -x" ;; esac +elif test "x${ax_cv_c_compiler_vendor}" = "xintel" ; then + case "$host" in + *) + SOLINK="-shared -Xlinker -x" + ;; + esac else AC_ERROR([Please update configure.in with SOLINK values for your compiler]) fi