Sorry, I don't follow libtool dev very closely so I forgot about this. Changelog and original patch attached.
/Sam On Tue, 2003-02-25 at 22:33, Robert Boehne wrote: > Hello all, > > I just want to remind everyone that patches should > be posted to [EMAIL PROTECTED] with a ChangeLog entry. > I have precious little time, and searching for patches > on the wrong list, email addresses, and writing ChangeLog > entries are all things that are better done by patch authors. > Wouldn't YOU rather I spent my time reviewing code, refactoring, > and doing testing? ;) > > Thanks, > > Robert Boehne > > Samuel Meder wrote: > > > > The attached patch actually works... > > > > /Sam > > > > On Tue, 2003-02-25 at 14:16, Samuel Meder wrote: > > > The intel compiler on ia64 seems to be called ecc instead of icc. The > > > attached patch will make CVS HEAD libtool work with ecc (+ strip the > > > path component from the comparsion with "icc"). > > > > > > /Sam > > > > ------------------------------------------------------------------------ > > Name: libtool.patch > > libtool.patch Type: text/x-patch > > Encoding: quoted-printable > > > > ------------------------------------------------------------------------ > > _______________________________________________ > > Libtool mailing list > > [EMAIL PROTECTED] > > http://mail.gnu.org/mailman/listinfo/libtool >
Index: ChangeLog =================================================================== RCS file: /cvsroot/libtool/libtool/ChangeLog,v retrieving revision 1.1199 diff -u -r1.1199 ChangeLog --- ChangeLog 26 Feb 2003 04:26:10 -0000 1.1199 +++ ChangeLog 26 Feb 2003 04:52:20 -0000 @@ -1,3 +1,8 @@ +2003-02-25 Samuel Meder <[EMAIL PROTECTED]> + + * libtool.m4 (ia64): Add support for Intel compiler (ecc) on IA64 + Linux. + 2003-02-25 Benjamin Reed <[EMAIL PROTECTED]> * libtool.m4 (darwin): Disable hardcoding library paths to
Index: libtool.m4 =================================================================== RCS file: /cvsroot/libtool/libtool/libtool.m4,v retrieving revision 1.305 diff -u -r1.305 libtool.m4 --- libtool.m4 26 Feb 2003 04:26:10 -0000 1.305 +++ libtool.m4 26 Feb 2003 04:51:39 -0000 @@ -4749,7 +4749,8 @@ ;; linux*) - if test "$CC" = "icc"; then + if test "`echo $CC | sed \"s/.*\///\"`" = "icc" || \ + test "`echo $CC | sed \"s/.*\///\"`" = "ecc" ; then _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
_______________________________________________ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool