libtool
[Top][All Lists]
Advanced

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

Re: IRIX and -LANG flags


From: Albert Chin
Subject: Re: IRIX and -LANG flags
Date: Thu, 25 Jul 2002 18:21:44 -0500
User-agent: Mutt/1.2.5i

On Tue, Jul 09, 2002 at 06:46:43PM -0700, Ossama Othman wrote:
> Hi,
> 
> This following was reported on the Debian BTS:
> 
> File: /usr/share/libtool/ltmain.sh
> 
>       # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:*
>       # so, if we see these flags be careful not to treat them like -L
>       -L[A-Z][A-Z]*:*)
>         case $with_gcc/$host in
>         no/*-*-irix* | no/*-*-nonstopux*)
>           compile_command="$compile_command $arg"
>           finalize_command="$finalize_command $arg"
>           ;;
>         esac
>         continue
>         ;;
> 
>  when compiling with gcc, $with_gcc is set to yes.  when compiling with
>  the MIPSpro compiler collection, $with_gcc is empty, not "no".  The
>  effect is that libtool removes all the -LANG options from the compiler
>  line.
> 
> Is this still a problem with libtool 1.4.2 and libtool HEAD?

HEAD seems to have this fixed:
      -L[A-Z][A-Z]*:*)
        case $with_gcc/$host in
        no/*-*-irix* | /*-*-irix*)

I think the note above is correct though and we could get away with:
      -L[A-Z][A-Z]*:*)
        case $with_gcc/$host in
        /*-*-irix*)

-- 
albert chin (address@hidden)



reply via email to

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