* [Qemu-devel] ./configure --help and gcc checks
@ 2006-04-06 12:33 Sylvain Petreolle
2006-04-06 19:40 ` Jim C. Brown
2006-04-06 22:59 ` Kevin F. Quinn
0 siblings, 2 replies; 7+ messages in thread
From: Sylvain Petreolle @ 2006-04-06 12:33 UTC (permalink / raw)
To: Qemu list
Hi people,
I have gcc 3.2.3 (run as gcc32) and gcc 4.1.0.
./configure --help runs the gcc check, thus displaying the following error :
ERROR: "gcc" looks like gcc 4.x
IMHO this should be changed to avoid running things like this :
./configure --cc=gcc32 --help
Do agree with that ?
Kind regards,
Sylvain Petreolle (aka Usurp)
--- --- --- --- --- --- --- --- --- --- --- --- ---
Listen to free Music: www.jamendo.com
Tired of a proprietary Windows on your computer ?
Use free ReactOS instead ( http://www.reactos.org )
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Qemu-devel] ./configure --help and gcc checks
2006-04-06 12:33 [Qemu-devel] ./configure --help and gcc checks Sylvain Petreolle
@ 2006-04-06 19:40 ` Jim C. Brown
2006-04-06 20:31 ` Kevin F. Quinn
2006-04-06 20:40 ` Sylvain Petreolle
2006-04-06 22:59 ` Kevin F. Quinn
1 sibling, 2 replies; 7+ messages in thread
From: Jim C. Brown @ 2006-04-06 19:40 UTC (permalink / raw)
To: Qemu list
having configure check for gcc3, gcc31, gcc32, gcc33, gcc34, etc before checking
for gcc itself might work.
is it really worth the trouble to check every possible combination?
On Thu, Apr 06, 2006 at 02:33:30PM +0200, Sylvain Petreolle wrote:
> Hi people,
> I have gcc 3.2.3 (run as gcc32) and gcc 4.1.0.
>
> ./configure --help runs the gcc check, thus displaying the following error :
> ERROR: "gcc" looks like gcc 4.x
>
> IMHO this should be changed to avoid running things like this :
> ./configure --cc=gcc32 --help
>
> Do agree with that ?
>
> Kind regards,
> Sylvain Petreolle (aka Usurp)
> --- --- --- --- --- --- --- --- --- --- --- --- ---
> Listen to free Music: www.jamendo.com
>
> Tired of a proprietary Windows on your computer ?
> Use free ReactOS instead ( http://www.reactos.org )
>
>
>
> _______________________________________________
> Qemu-devel mailing list
> Qemu-devel@nongnu.org
> http://lists.nongnu.org/mailman/listinfo/qemu-devel
>
--
Infinite complexity begets infinite beauty.
Infinite precision begets infinite perfection.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Qemu-devel] ./configure --help and gcc checks
2006-04-06 19:40 ` Jim C. Brown
@ 2006-04-06 20:31 ` Kevin F. Quinn
2006-04-06 20:36 ` Sylvain Petreolle
2006-04-06 20:40 ` Sylvain Petreolle
1 sibling, 1 reply; 7+ messages in thread
From: Kevin F. Quinn @ 2006-04-06 20:31 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 443 bytes --]
On Thu, 6 Apr 2006 15:40:53 -0400
"Jim C. Brown" <jma5@umd.edu> wrote:
> having configure check for gcc3, gcc31, gcc32, gcc33, gcc34, etc
> before checking for gcc itself might work.
>
> is it really worth the trouble to check every possible combination?
>[...]
> > IMHO this should be changed to avoid running things like this :
> > ./configure --cc=gcc32 --help
How about doing:
CC=gcc32 ./configure
--
Kevin F. Quinn
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 191 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Qemu-devel] ./configure --help and gcc checks
2006-04-06 20:31 ` Kevin F. Quinn
@ 2006-04-06 20:36 ` Sylvain Petreolle
0 siblings, 0 replies; 7+ messages in thread
From: Sylvain Petreolle @ 2006-04-06 20:36 UTC (permalink / raw)
To: qemu-devel
Hehe, qemu's configure doesnt use it :)
--- "Kevin F. Quinn" <ml@kevquinn.com> a écrit :
> How about doing:
>
> CC=gcc32 ./configure
>
> --
> Kevin F. Quinn
> > _______________________________________________
> Qemu-devel mailing list
> Qemu-devel@nongnu.org
> http://lists.nongnu.org/mailman/listinfo/qemu-devel
Kind regards,
Sylvain Petreolle (aka Usurp)
--- --- --- --- --- --- --- --- --- --- --- --- ---
Listen to free Music: http://www.jamendo.com
Windows is proprietary, use free ReactOS instead : http://www.reactos.org
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Qemu-devel] ./configure --help and gcc checks
2006-04-06 19:40 ` Jim C. Brown
2006-04-06 20:31 ` Kevin F. Quinn
@ 2006-04-06 20:40 ` Sylvain Petreolle
2006-04-06 21:30 ` Jim C. Brown
1 sibling, 1 reply; 7+ messages in thread
From: Sylvain Petreolle @ 2006-04-06 20:40 UTC (permalink / raw)
To: qemu-devel
why would you need to check gcc's version just for displaying help ??
in fact a bunch of /bin/echo commands...
--- "Jim C. Brown" <jma5@umd.edu> a écrit :
> having configure check for gcc3, gcc31, gcc32, gcc33, gcc34, etc before checking
> for gcc itself might work.
>
> is it really worth the trouble to check every possible combination?
>
Kind regards,
Sylvain Petreolle (aka Usurp)
--- --- --- --- --- --- --- --- --- --- --- --- ---
Listen to free Music: http://www.jamendo.com
Windows is proprietary, use free ReactOS instead : http://www.reactos.org
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Qemu-devel] ./configure --help and gcc checks
2006-04-06 20:40 ` Sylvain Petreolle
@ 2006-04-06 21:30 ` Jim C. Brown
0 siblings, 0 replies; 7+ messages in thread
From: Jim C. Brown @ 2006-04-06 21:30 UTC (permalink / raw)
To: qemu-devel
On Thu, Apr 06, 2006 at 10:40:15PM +0200, Sylvain Petreolle wrote:
> why would you need to check gcc's version just for displaying help ??
> in fact a bunch of /bin/echo commands...
>
> --- "Jim C. Brown" <jma5@umd.edu> a ?crit :
Not for help. I meant auto-detection, so that if u have gcc 4.0 and
gcc 3.0 the script will pick the right version.
--
Infinite complexity begets infinite beauty.
Infinite precision begets infinite perfection.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Qemu-devel] ./configure --help and gcc checks
2006-04-06 12:33 [Qemu-devel] ./configure --help and gcc checks Sylvain Petreolle
2006-04-06 19:40 ` Jim C. Brown
@ 2006-04-06 22:59 ` Kevin F. Quinn
1 sibling, 0 replies; 7+ messages in thread
From: Kevin F. Quinn @ 2006-04-06 22:59 UTC (permalink / raw)
To: qemu-devel; +Cc: spetreolle
[-- Attachment #1: Type: text/plain, Size: 533 bytes --]
On Thu, 6 Apr 2006 14:33:30 +0200 (CEST)
Sylvain Petreolle <spetreolle@yahoo.fr> wrote:
> Hi people,
> I have gcc 3.2.3 (run as gcc32) and gcc 4.1.0.
>
> ./configure --help runs the gcc check, thus displaying the following
> error : ERROR: "gcc" looks like gcc 4.x
>
> IMHO this should be changed to avoid running things like this :
> ./configure --cc=gcc32 --help
I see what you mean now :)
It would enough to just move the gcc check in the configure script to
after the help processing.
--
Kevin F. Quinn
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 191 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2006-04-06 22:57 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-04-06 12:33 [Qemu-devel] ./configure --help and gcc checks Sylvain Petreolle
2006-04-06 19:40 ` Jim C. Brown
2006-04-06 20:31 ` Kevin F. Quinn
2006-04-06 20:36 ` Sylvain Petreolle
2006-04-06 20:40 ` Sylvain Petreolle
2006-04-06 21:30 ` Jim C. Brown
2006-04-06 22:59 ` Kevin F. Quinn
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.