public inbox for java-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug libgcj/33278]  New: [4.3 Regression] libjava fails to compile if configure argument contains "version"
@ 2007-09-02 11:00 belyshev at depni dot sinp dot msu dot ru
  2007-09-02 11:21 ` [Bug libgcj/33278] " doko at ubuntu dot com
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: belyshev at depni dot sinp dot msu dot ru @ 2007-09-02 11:00 UTC (permalink / raw)
  To: java-prs

When gcc is configured with, for example, "--without-pkgversion", this part of
libjava configure script parses "gcj -v" output incorrectly, thus encoding
garbage as preprocessor macro and failing:

gcjversion=`$GCJ -v 2>&1 | sed -n 's/^.*version \([[^ ]]*\).*$/\1/p'`

An obvious fix would be:

Index: gcc43/libjava/configure.ac
===================================================================
--- gcc43.orig/libjava/configure.ac
+++ gcc43/libjava/configure.ac
@@ -1369,7 +1369,7 @@ AC_SUBST(toolexecmainlibdir)
 AC_SUBST(toolexeclibdir)

 # Determine gcj and libgcj version number.
-gcjversion=`$GCJ -v 2>&1 | sed -n 's/^.*version \([[^ ]]*\).*$/\1/p'`
+gcjversion=`$GCJ -v 2>&1 | awk '/^gcc version/ { print $3 }'`
 libgcj_soversion=`awk -F: '/^[[^#]].*:/ { print $1 }' $srcdir/libtool-version`
 GCJVERSION=$gcjversion
 AC_SUBST(GCJVERSION)


Introduced by:

r127025 | doko | 2007-07-29 00:32:27 +0400 (Sun, 29 Jul 2007) | 6 lines
2007-07-28  Matthias Klose  <doko@ubuntu.com>

        * configure.ac: Encode the libgcj soversion in dbexecdir,
        pass --with-native-libdir to classpath configure.
        * configure: Regenerate.


-- 
           Summary: [4.3 Regression] libjava fails to compile if configure
                    argument contains "version"
           Product: gcc
           Version: 4.3.0
            Status: UNCONFIRMED
          Keywords: build
          Severity: normal
          Priority: P3
         Component: libgcj
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: belyshev at depni dot sinp dot msu dot ru


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33278


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug libgcj/33278] [4.3 Regression] libjava fails to compile if configure argument contains "version"
  2007-09-02 11:00 [Bug libgcj/33278] New: [4.3 Regression] libjava fails to compile if configure argument contains "version" belyshev at depni dot sinp dot msu dot ru
@ 2007-09-02 11:21 ` doko at ubuntu dot com
  2007-09-02 11:55 ` pinskia at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: doko at ubuntu dot com @ 2007-09-02 11:21 UTC (permalink / raw)
  To: java-prs



------- Comment #1 from doko at ubuntu dot com  2007-09-02 11:21 -------
Subject: Re:   New: [4.3 Regression] libjava fails to compile
 if configure argument contains "version"

belyshev at depni dot sinp dot msu dot ru schrieb:
> When gcc is configured with, for example, "--without-pkgversion", this part of
> libjava configure script parses "gcj -v" output incorrectly, thus encoding
> garbage as preprocessor macro and failing:
> 
> gcjversion=`$GCJ -v 2>&1 | sed -n 's/^.*version \([[^ ]]*\).*$/\1/p'`
> 
> An obvious fix would be:

> -gcjversion=`$GCJ -v 2>&1 | sed -n 's/^.*version \([[^ ]]*\).*$/\1/p'`
> +gcjversion=`$GCJ -v 2>&1 | awk '/^gcc version/ { print $3 }'`

doesn't look robust either; what about

  gcjversion=`cat $srcdir/../gcc/BASE-VER`


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33278


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug libgcj/33278] [4.3 Regression] libjava fails to compile if configure argument contains "version"
  2007-09-02 11:00 [Bug libgcj/33278] New: [4.3 Regression] libjava fails to compile if configure argument contains "version" belyshev at depni dot sinp dot msu dot ru
  2007-09-02 11:21 ` [Bug libgcj/33278] " doko at ubuntu dot com
@ 2007-09-02 11:55 ` pinskia at gcc dot gnu dot org
  2007-09-02 12:28 ` belyshev at depni dot sinp dot msu dot ru
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-09-02 11:55 UTC (permalink / raw)
  To: java-prs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pinskia at gcc dot gnu dot
                   |                            |org
   Target Milestone|---                         |4.3.0


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33278


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug libgcj/33278] [4.3 Regression] libjava fails to compile if configure argument contains "version"
  2007-09-02 11:00 [Bug libgcj/33278] New: [4.3 Regression] libjava fails to compile if configure argument contains "version" belyshev at depni dot sinp dot msu dot ru
  2007-09-02 11:21 ` [Bug libgcj/33278] " doko at ubuntu dot com
  2007-09-02 11:55 ` pinskia at gcc dot gnu dot org
@ 2007-09-02 12:28 ` belyshev at depni dot sinp dot msu dot ru
  2007-09-04 21:32 ` doko at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: belyshev at depni dot sinp dot msu dot ru @ 2007-09-02 12:28 UTC (permalink / raw)
  To: java-prs



------- Comment #2 from belyshev at depni dot sinp dot msu dot ru  2007-09-02 12:28 -------
(In reply to comment #1)
>> doesn't look robust either; what about
> 
>   gcjversion=`cat $srcdir/../gcc/BASE-VER`
> 

Agreed, that's much better. To be even more robust, add quotes:

gcjversion=`cat "$srcdir/../gcc/BASE-VER"`


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33278


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug libgcj/33278] [4.3 Regression] libjava fails to compile if configure argument contains "version"
  2007-09-02 11:00 [Bug libgcj/33278] New: [4.3 Regression] libjava fails to compile if configure argument contains "version" belyshev at depni dot sinp dot msu dot ru
                   ` (2 preceding siblings ...)
  2007-09-02 12:28 ` belyshev at depni dot sinp dot msu dot ru
@ 2007-09-04 21:32 ` doko at gcc dot gnu dot org
  2007-09-05  2:24 ` mmitchel at gcc dot gnu dot org
  2007-09-05  5:10 ` belyshev at depni dot sinp dot msu dot ru
  5 siblings, 0 replies; 7+ messages in thread
From: doko at gcc dot gnu dot org @ 2007-09-04 21:32 UTC (permalink / raw)
  To: java-prs



------- Comment #3 from doko at gcc dot gnu dot org  2007-09-04 21:32 -------
Subject: Bug 33278

Author: doko
Date: Tue Sep  4 21:32:41 2007
New Revision: 128104

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=128104
Log:
2007-09-05  Matthias Klose  <doko@ubuntu.com>

        PR libgcj/33278
        * configure.ac: Robustify extraction of gcj version.
        * configure: Regenerate.

Modified:
    trunk/libjava/ChangeLog
    trunk/libjava/configure
    trunk/libjava/configure.ac


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33278


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug libgcj/33278] [4.3 Regression] libjava fails to compile if configure argument contains "version"
  2007-09-02 11:00 [Bug libgcj/33278] New: [4.3 Regression] libjava fails to compile if configure argument contains "version" belyshev at depni dot sinp dot msu dot ru
                   ` (3 preceding siblings ...)
  2007-09-04 21:32 ` doko at gcc dot gnu dot org
@ 2007-09-05  2:24 ` mmitchel at gcc dot gnu dot org
  2007-09-05  5:10 ` belyshev at depni dot sinp dot msu dot ru
  5 siblings, 0 replies; 7+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2007-09-05  2:24 UTC (permalink / raw)
  To: java-prs



------- Comment #4 from mmitchel at gcc dot gnu dot org  2007-09-05 02:24 -------
Since a patch has been checked in, can this issue be closed?


-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P5


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33278


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug libgcj/33278] [4.3 Regression] libjava fails to compile if configure argument contains "version"
  2007-09-02 11:00 [Bug libgcj/33278] New: [4.3 Regression] libjava fails to compile if configure argument contains "version" belyshev at depni dot sinp dot msu dot ru
                   ` (4 preceding siblings ...)
  2007-09-05  2:24 ` mmitchel at gcc dot gnu dot org
@ 2007-09-05  5:10 ` belyshev at depni dot sinp dot msu dot ru
  5 siblings, 0 replies; 7+ messages in thread
From: belyshev at depni dot sinp dot msu dot ru @ 2007-09-05  5:10 UTC (permalink / raw)
  To: java-prs



------- Comment #5 from belyshev at depni dot sinp dot msu dot ru  2007-09-05 05:10 -------
Fixed.


-- 

belyshev at depni dot sinp dot msu dot ru changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |FIXED


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33278


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2007-09-05  5:10 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-09-02 11:00 [Bug libgcj/33278] New: [4.3 Regression] libjava fails to compile if configure argument contains "version" belyshev at depni dot sinp dot msu dot ru
2007-09-02 11:21 ` [Bug libgcj/33278] " doko at ubuntu dot com
2007-09-02 11:55 ` pinskia at gcc dot gnu dot org
2007-09-02 12:28 ` belyshev at depni dot sinp dot msu dot ru
2007-09-04 21:32 ` doko at gcc dot gnu dot org
2007-09-05  2:24 ` mmitchel at gcc dot gnu dot org
2007-09-05  5:10 ` belyshev at depni dot sinp dot msu dot ru

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).