libtool-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Libtool branch, master, updated. v2.2.4-10-gad01db1


From: Ralf Wildenhues
Subject: [SCM] GNU Libtool branch, master, updated. v2.2.4-10-gad01db1
Date: Sun, 25 May 2008 08:50:13 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Libtool".

The branch, master has been updated
       via  ad01db1911291e7a6fb8c62e3b3ea22923f98b63 (commit)
      from  d53ca5f67d229717a3593ca9320e83bf68f1b05e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit ad01db1911291e7a6fb8c62e3b3ea22923f98b63
Author: Ralf Wildenhues <address@hidden>
Date:   Sun May 25 10:40:26 2008 +0200

    Fix ifort settings again.
    
    * libltdl/m4/libtool.m4 (_LT_COMPILER_PIC) [linux] <ifort>:
    Unlike icc and ecc, not all ifort versions understand `-KPIC',
    e.g. version 10.1, so use `-fPIC' instead.
    Report by Jeff Squyres.
    
    Signed-off-by: Ralf Wildenhues <address@hidden>

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog             |    8 ++++++++
 libltdl/m4/libtool.m4 |    7 ++++++-
 2 files changed, 14 insertions(+), 1 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 1ec69ae..6538f62 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2008-05-25  Ralf Wildenhues  <address@hidden>
+
+       Fix ifort settings again.
+       * libltdl/m4/libtool.m4 (_LT_COMPILER_PIC) [linux] <ifort>:
+       Unlike icc and ecc, not all ifort versions understand `-KPIC',
+       e.g. version 10.1, so use `-fPIC' instead.
+       Report by Jeff Squyres.
+
 2008-05-20  Eric Blake  <address@hidden>
 
        Resynchronize argz whitespace changes from gnulib.
diff --git a/libltdl/m4/libtool.m4 b/libltdl/m4/libtool.m4
index 6f9ac1b..654f54a 100644
--- a/libltdl/m4/libtool.m4
+++ b/libltdl/m4/libtool.m4
@@ -3964,11 +3964,16 @@ m4_if([$1], [CXX], [
 
     linux* | k*bsd*-gnu)
       case $cc_basename in
-      icc* | ecc* | ifort*)
+      icc* | ecc*)
        _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
        _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
        _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
         ;;
+      ifort*)
+       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
+       _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
+        ;;
       pgcc* | pgf77* | pgf90* | pgf95*)
         # Portland Group compilers (*not* the Pentium gcc compiler,
        # which looks to be a dead project)


hooks/post-receive
--
GNU Libtool




reply via email to

[Prev in Thread] Current Thread [Next in Thread]