[Bug java/18212] nativ compilation with multiple jars fails / gives internal compiler error

2016-09-30 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=18212

Andrew Pinski  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WONTFIX

--- Comment #12 from Andrew Pinski  ---
Closing as won't fix as the Java front-end has been removed from the trunk.

[Bug java/18212] nativ compilation with multiple jars fails / gives internal compiler error

2005-04-16 Thread pinskia at gcc dot gnu dot org


-- 
   What|Removed |Added

 Status|REOPENED|NEW


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


[Bug java/18212] nativ compilation with multiple jars fails / gives internal compiler error

2005-03-09 Thread rmathew at gcc dot gnu dot org

--- Additional Comments From rmathew at gcc dot gnu dot org  2005-03-09 
11:03 ---
I can still see a crash similar to what Tom is seeing, but the other two
bugs are fixed - the break-up was not correct.

-- 
   What|Removed |Added

  BugsThisDependsOn|20351   |
 Status|RESOLVED|REOPENED
 Resolution|DUPLICATE   |


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


[Bug java/18212] nativ compilation with multiple jars fails / gives internal compiler error

2005-03-09 Thread rmathew at gcc dot gnu dot org


-- 
Bug 18212 depends on bug 20351, which changed state.

Bug 20351 Summary: compilation with a redundant jar fails, if output file 
specified
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20351

   What|Old Value   |New Value

 Status|UNCONFIRMED |RESOLVED
 Resolution||WORKSFORME

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


[Bug java/18212] nativ compilation with multiple jars fails / gives internal compiler error

2005-03-07 Thread bojan at antonovic dot com

--- Additional Comments From bojan at antonovic dot com  2005-03-07 17:11 
---
Bug 18212 can be splitted, and be seen as duplicate, of bugs 20351 and 20362.

I mark it as duplicate of bug 20362. (If patches for 20362 and 20351 fail for
18212, it can be reopened). 

*** This bug has been marked as a duplicate of 20362 ***

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE


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


[Bug java/18212] nativ compilation with multiple jars fails / gives internal compiler error

2005-03-06 Thread bojan at antonovic dot com

--- Additional Comments From bojan at antonovic dot com  2005-03-07 00:59 
---
The part of the bug that produces the ICE (bus error) can be reproduced by
extracting and compiling all classes from a single jar. Unzip all classes from
SMOOD.jar by

unzip -l SMOOD.jar

and then compile with

gcj  -o smood.exe --main=smood.Main smood/Main.class smood/*/*.class
smood/*/*/*.class smood/*/*/*/*.class

gives

smood/Main.class:0: internal compiler error: Bus error

This ICE is not yet reproducable with other jars or with less files. However,
because bug 18212 can be splitted to bug 20351 and an other possible new one, it
can be soon removed as duplicate of two known bugs, as soon the one for the ICE
is found.


-- 


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


[Bug java/18212] nativ compilation with multiple jars fails / gives internal compiler error

2005-01-30 Thread pinskia at gcc dot gnu dot org


-- 
   What|Removed |Added

   Severity|critical|normal
   Target Milestone|4.0.0   |---


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


[Bug java/18212] nativ compilation with multiple jars fails / gives internal compiler error

2004-12-01 Thread tromey at gcc dot gnu dot org

--- Additional Comments From tromey at gcc dot gnu dot org  2004-12-01 
21:59 ---
Most of these cases work fine for me.

However, this one fails:

opsy. gcj -o Z --classpath=B.jar:A.jar:. --main=ProcessorOptimizer.Main X.jar
A.jar B.jar
java/security/SecureRandom.java:0: internal compiler error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See http://gcc.gnu.org/bugs.html> for instructions.



-- 
   What|Removed |Added

 CC||tromey at gcc dot gnu dot
   ||org
 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
   Last reconfirmed|-00-00 00:00:00 |2004-12-01 21:59:19
   date||
   Target Milestone|--- |4.0.0


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


[Bug java/18212] nativ compilation with multiple jars fails / gives internal compiler error

2004-11-08 Thread bojan at antonovic dot com

--- Additional Comments From bojan at antonovic dot com  2004-11-08 16:29 
---
Subject: Re:  nativ compilation with multiple jars fails /
 gives internal compiler error

Problems exists still with GCJ 3.4.3.

Bojan



-- 


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


[Bug java/18212] nativ compilation with multiple jars fails / gives internal compiler error

2004-10-29 Thread bojan at antonovic dot com

--- Additional Comments From bojan at antonovic dot com  2004-10-29 14:19 ---
Subject: Re:  nativ compilation with multiple jars fails /
 gives internal compiler error

pinskia at gcc dot gnu dot org wrote:

>--- Additional Comments From pinskia at gcc dot gnu dot org  2004-10-29 13:08 
>---
>This is most likely the same as PR 7.
>
>Could you attach all three jar files?
>
>  
>
You have them in the attachment.

Because they're renamed, the real compilation calls for the classes of X 
are:

working: gcj --classpath=A.jar:B.jar:. --main=ProcessorOptimizer.Main 
ProcessorOptimizer/*.class ProcessorOptimizer/*/*.class A.jar B.jar
crashing: gcj -o x.exec --classpath=A.jar:B.jar:. 
--main=ProcessorOptimizer.Main ProcessorOptimizer/*.class 
ProcessorOptimizer/*/*.class A.jar B.jar
crashing: gcj -o x.exec --classpath=A.jar:B.jar:X.jar:. 
--main=ProcessorOptimizer.Main ProcessorOptimizer/*.class 
ProcessorOptimizer/*/*.class A.jar B.jar

The last crashing one is new.

working:  gcj --classpath=A.jar:B.jar:. --main=ProcessorOptimizer.Main 
X.jar A.jar B.jar
failing: gcj -o x.exec --classpath=A.jar:B.jar:. 
--main=ProcessorOptimizer.Main X.jar A.jar B.jar
failing: gcj -o x.exec --classpath=B.jar:A.jar:. 
--main=ProcessorOptimizer.Main X.jar A.jar B.jar

The last failing one is new.

I have tested this calls. I hope _I_ made no bug in the bug report! :)

Bojan




--- Additional Comments From bojan at antonovic dot com  2004-10-29 14:20 ---
Created an attachment (id=7428)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=7428&action=view)

--- Additional Comments From bojan at antonovic dot com  2004-10-29 14:20 ---
Created an attachment (id=7429)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=7429&action=view)

--- Additional Comments From bojan at antonovic dot com  2004-10-29 14:20 ---
Created an attachment (id=7430)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=7430&action=view)


-- 


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


[Bug java/18212] nativ compilation with multiple jars fails / gives internal compiler error

2004-10-29 Thread pinskia at gcc dot gnu dot org

--- Additional Comments From pinskia at gcc dot gnu dot org  2004-10-29 13:08 
---
This is most likely the same as PR 7.

Could you attach all three jar files?

-- 
   What|Removed |Added

   Keywords||ice-on-valid-code


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