This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: PATCH [4.4]: update config.{guess,sub}


Hi Ben,

* Ben Elliston wrote on Mon, Nov 16, 2009 at 07:23:55PM CET:
> This patch just brings the two files up to the same level as mainline.
> It makes for a fairly lengthy patch.  Would the RM prefer to just patch
> the darwin10 case specifically?

Why are there changes from portable
  grep ... >/dev/null

to less portable but not any clearer
  grep -q

?  That'll only help introduce other nonportable constructs in these
scripts later.

How come dietlibc is not detected any more on Linux?

Why is there no mailing list for config-patches?

Thanks,
Ralf

> @@ -653,7 +656,7 @@ EOF
>  	    # => hppa64-hp-hpux11.23
>  
>  	    if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) |
> -		grep __LP64__ >/dev/null
> +		grep -q __LP64__
>  	    then
>  		HP_ARCH="hppa2.0w"
>  	    else


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]