Tagged Questions

GCJ is the GNU compiler for the Java programming language. It can compile Java source code to Java bytecode, or directly to native code.

learn more… | top users | synonyms

49
votes
10answers
1k views

Is this valid Java?

Is this valid Java? import java.util.Arrays; import java.util.List; class TestWillThatCompile { public static String f(List<String> list) { System.out.println("strings"); ...
7
votes
5answers
706 views

JDK, JRE, Java: Version Confusion!

Although I'm not a real Java developer (yet), I feel like I should know this by now, but I'm still very confused. My question has two parts: What is the difference between the so-called (as I've ...
7
votes
4answers
1k views

Is GNU's Java Compiler (GCJ) dead?

As of October 2010, is GNU's Java compiler dead? Are there any active alternatives (especially for compiling Java to native code)? LLVM solutions would be preferred.
7
votes
8answers
1k views

Is GCJ (GNU Compiler for Java) a viable tool for publishing a webapp?

Is it really viable to use GCJ to publish server-side applications? Webapps? My boss is convinced that compiling our (my) webapp into a binary executable is a brilliant idea. (Then again, he ...
5
votes
3answers
319 views

Invoking C++ code from Java (GCJ)

I'm trying to invoke C++ from Java using GCJ using the CNI, so far I'm able to invoke Java code from C++. How can I invoke C++ from Java using the CNI?
5
votes
1answer
471 views

How to create a compiler Action for SBT

I want to create an Action to automate GCJ compilation. Since I couldn't make it work with Ant, I decided to try SBT. The docs say how to create an Action and how to run an external process. What I ...
4
votes
1answer
112 views

How do I print a Java array in gdb?

I compiled a very simple java program with gcj-4.4 and -o option. I loaded it in gdb-7.2 and tried to do some debugging. I noticed at I could print the variables in int type but I could not print an ...
4
votes
2answers
863 views

Why doesn't GCJ find the classes from my imported packages?

I want to compile a small Java application to a Windows executable. The application is very small, only a single main class, but it uses Apache POI. When I compile it, everything works fine, as long ...
3
votes
2answers
142 views

Is GCJ still in development?

I've been searching for information about the state of GCJ and it's future but especially for the future was nothing to find... Is GCJ dead?
3
votes
4answers
2k views

Java JRE vs GCJ

I have this results from a speed test I wrote in Java: Java real 0m20.626s user 0m20.257s sys 0m0.244s GCJ real 3m10.567s user 3m5.168s sys 0m0.676s ...
3
votes
2answers
716 views

How to use GCJ with Ant?

I'm fairly new to both Apache Ant and GCJ, and I'm having a hard time trying to build with GCJ via Ant. My app is in Scala, so I need to use GCJ to take .class files as source. No problem compiling ...
3
votes
1answer
128 views

Possible to use GCJ to produce library callable from Python?

Is it possible to compile a library intended for Java with GCJ, get a dll and call from python ctypes? I'm interested in toxilibs for now, but if anybody knows a toy example that would be great !
2
votes
1answer
93 views

Java Scanner : “0” is not a double

I have a problem with the java Scanner : I'm trying to read doubles using this code : Scanner sc = new Scanner(System.in); double value = sc.nextDouble(); However when the number to read is "0.0" ...
2
votes
1answer
73 views

Does the GNU Java compiler support JNA?

I want to write a java program that uses the Windows API and that compiles to native code instead of byte code. I don't want using JNI (C, C++, ... interface) but instead want to write using pure ...
2
votes
1answer
391 views

Java BigDecimal alternative library

This may strike as particularly odd but I must compile several new code against GCJ; that doesn't support Java's BigDecimal. What I'm looking for is an alternative to java.math.BigDecimal. Can ...
2
votes
1answer
129 views

GJC - an external jar

Please don't go into a rant why I shouldn't be using GJC, I understand the con's of it. The question is, can I link a compiled library just as if using a regular jar? // this works and links to the ...
2
votes
2answers
509 views

Compile complex Java Program in native code using GCJ

I have a java program consists of a jar for the "real program" and a sub-folder containing 20 jar library files (also have dependencies between them). I tried but without success ... I'm missing with ...
2
votes
3answers
441 views

Referencing libraries for a Linux executable

I have written an application in Java and succesfully compiled it using gcj. It worked surprisingly well, but I've run into a hurdle: I can only run the executable through a shell script, because I ...
2
votes
1answer
669 views

How do I link two Java files together during compilation using GCJ?

My apologies as I'm very much a "Java noob." Anyways, I think I've dumbed this problem down sufficiently to ask in a way that is straight-forward and will get me the answer I want. Let's say I have ...
2
votes
2answers
328 views

Anyone here have any experience using gcj's CNI for java external libraries?

I've been interested in doing some work on a desktop application for while now and my most proficient language is Java. Due to wanting to be able to compile down to a native executable, does anyone ...
1
vote
2answers
165 views

using cygwin compile java file to widows native code

I have written a small java application for one of my homework. the problem is the teacher may not have JRE installed. what i want to id to compile the java file to window exe file so the teacher can ...
1
vote
1answer
195 views

GCC GCJ needs ECJ and Other Libraries?

So I just downloaded mingw-w64-bin_i686-mingw_20110410.zip from here (GCC 4.7 apparently), and discovered it had a very recent version of the GCJ compiler. I tried using it, but apparently gcj ...
1
vote
1answer
240 views

I'd like to cross-compile a gcj program for windows in linux

I already have my program compiling on the linux gcj, but i'd like to statically compile for windows. I've failed for linux. It always says: /usr/bin/ld: cannot find -lgcj collect2: ld returned 1 ...
1
vote
1answer
266 views

GCJ on SnowLeopard

I do not know if this is the right place to ask this question.. but... do you know if there is some installer of gcj available (or some way to install it) for Mac OS X 10.6? I tried to install the ...
1
vote
1answer
191 views

GCJ javax.swing.GroupLayout

I am using gnu compiler for java version 4.4.4. It doesn't come with support for javax.swing.GroupLayout. Do later versions come with this support? I have build GCC many times before on my system. ...
1
vote
1answer
191 views

Binary name in java program compiled by gcj

Is there any way, from within a Java program compiled by gcj, to find out the name of the executable the user ran to start the program? In C, argv[0] (from inside main) is the name, but in Java, the ...
1
vote
2answers
576 views

Combining Java and C without gcj — move C to Java or Java to C?

First, I have no experience doing this. But like the beginning of any good program, I have problem that I need to fix, so I'm willing to learn. So many of you are probably already familiar with ...
1
vote
2answers
691 views

Problems with GCJ (jc1.exe)

I not whether this is the sort of question to be asked on StackOverflow, but I'll ask it anyway. I am using GCJ (as part of MinGW) on Windows XP SP3 to compile a Java class to an EXE. The Java Class ...
0
votes
1answer
24 views

GCJ and <Void, Void>

Is there a known issue with GCJ and using <Void, Void>? My code works fine without it, but trying to compile it to an exe using gcj fails: $ gcj -c -g -O Program.java Program.java:25: error: ...
0
votes
2answers
46 views

How do I link jar packages together with *.java files during compilation using GCJ?

I have the following files: A.jar (containing *.class files) B.jar (containing *.class files) Program.java (containing Program class with main function, which depends on A.jar and B.jar) How ...
0
votes
0answers
63 views

Statically Linking a GCJ Application on Ubuntu Natty

I'm trying to statically link a GCJ application and it looks like theres some misconfiguration somewhere. I'm just using the standard gcj installation on natty and I have both libgcj11 and ...
0
votes
0answers
60 views

Using GCJ to compile Hadoop RandomWriter

I'm trying to compile a gcj version of hadoop's randomwriter It successfully compiles, but when I try to run the resulting executable I get the following output: ...
0
votes
0answers
196 views

gcj - turn .jar files into native code

I did develop a Java Application using Qt for the GUI. Now I found out that I maybe could turn this into a machine-code application with cgj. I was able to turn all .jar files into .o files with gcj, ...
0
votes
1answer
1k views

Calling Java library (JAR) from VBA/VBScript/Visual Basic Classic

There is jar library native C++ port is not yet available (as DLL) I need to call from I have 3 possibilities: 1) Wait until native port is ready 2) Use JAR library from VB via brigde (?), ...
0
votes
1answer
301 views

GCJ for NetBeans

How can I compile a Java program by GCJ compiler in NetBeans? Is there any plugin for it?
0
votes
2answers
754 views

MinGW gcj for Windows?

I can't find the link to the binaries for gcj for MinGW; it doesn't show up on the MinGW-get list, and I can't find the binaries on the site. Does it even exist? Where can I find it?
0
votes
2answers
192 views

Error compiling java code with MinGW gcj

Hey,firends,This is my first post. I'm just begin to using Gcc to compile java,and I have some trouble in doing this. My input and output: import java.io.*; import java.util.*; public class ...
0
votes
3answers
565 views

Running Different Bash Commands Based on Java Version

I'm trying to develop a bash build script for a Java project that will be run on Ubuntu and Fedora. Ubuntu uses the gcj compiler while Fedora uses IcedTea. Both report their errors and warning in ...
0
votes
1answer
160 views

How To Ignore Warnings With GCJ

I have some classes that implement interfaces, some of which have methods whose parameters are by definition unused in the particular class implementation. e.g. A "Shape" interface may define a ...
0
votes
5answers
208 views

Differences when compiling Java with GNU Compiler for Java instead of the Sun JDK

I'm working on a school project where I am required to use the GNU Compiler for Java. I've always worked using the official Sun JDK and now I'm concerned about differences that might complicate my ...