GCJ is the GNU compiler for the Java programming language. It can compile Java source code to Java bytecode, or directly to native code.
19
votes
2answers
417 views
extern “Java” block in GCC
I found an interesting feature in GCC documentation for C++:
java_interface
This type attribute informs C++ that the class is a Java interface. It may only be applied to classes declared ...
0
votes
0answers
208 views
the program javac can be found in the following packages ubuntu
typing
$ java -version
The program 'java' can be found in the following packages:
* gcj-4.4-jre-headless
* gcj-4.5-jre-headless
* openjdk-6-jre-headless
Try: sudo apt-get install <selected ...
0
votes
1answer
162 views
GCJ Linking Error: Says error: undefined reference to 'main' collect2: error: ld returned 1 exit status
The code is this:
public class Thingy
{
public static void main(String[] args)
{
System.out.println(Math.random());
}
}
So, absolutely NOT an unusual case, just a basic example.
When I ...
0
votes
0answers
64 views
can't compile jar with gcj: undefined reference to main
I developed my java project with eclipse and built a runnable jar.
Then I tried to use gcj to compile that jar.
stefan@api-1:/Sbox/Software/executables$ gcj --classpath=Sbo
xSpeakerDependent.jar ...
0
votes
1answer
54 views
Wierd compiler error in GCJ
I was trying to compile some java codes using gcj. I am getting following error. Is it because something in that line is not supported by my gcj? Btw, I am using gcj to see if native codes are any ...
1
vote
0answers
68 views
How can I compile files separately with gcj?
I use gcj (Cygwin version) to compile 2 java files
$ gcj --version
gcj (GCC) 3.4.4 (cygming special, gdc 0.12, using dmd 0.125)
Copyright (C) 2004 Free Software Foundation, Inc.
This is free ...
2
votes
1answer
129 views
How do you link the correct ABI versions with GCJ for foregin jars?
I had decided to try and compile minecraft into a native binary.
For that I used the following (approximately, optimization may have differed):
gcj -c -O2 -fjni -findirect-dispatch ./minecraft.jar ...
2
votes
2answers
459 views
With gcj compiled java & XStream. (Exception: Cannot create XmlPullParser)
I'm enhancing a client, which is part of a bigger project. Because of the lack of speed i was forced to switch to CNI and therefore i had to generate native code with the GNU-gcj compiler (gnu 4.6.3).
...
5
votes
3answers
384 views
Does compiling Java to native code protect the source code?
Now, I know that...
Anything can be reverse engineered, given enough time and resources.
However, would compiling your Java code to native code with a tool like GCJ make it more difficult to ...
1
vote
0answers
103 views
Exception loading properties files from mingw / gcj executable
I've built a gcj cross compiler running on Linux and producing Windows executables, using binutils-2.22 and gcc-4.6.3, and mostly following the notes from here: ...
1
vote
2answers
93 views
Console input waiting when it should not
I've just started working with Java, and I've been trying to get the console input to work properly. Here's the code:
System.out.println("Write a word: ");
Scanner keyboard = new Scanner(System.in);
...
2
votes
2answers
318 views
How to Compile Java Servlets and many other classes with GCJ?
Currently i have a back-end system written in Java that process, massage and forward the data to a external HSM module for encryption. It was consider secure enough back then. However, recent audit ...
1
vote
0answers
216 views
gcj compile to arm
I am trying to build micro libgcj for android ndk. I can get to build find but when I try to link libulibgcj.a I get invalid format error. I think it is because of gcj not compiling to arm. Two static ...
2
votes
2answers
72 views
Going from a bunch of .Java files to a .Jar file from the commandline with one simple command
I've searched around and I can't find a simple commandline tool that will take a bunch of .java files in a directory and compile to .class files then stick them all in a .jar automatically. I could ...
0
votes
1answer
219 views
Scanner class in Java5 throw java.lang.NullPointerException
I am using scanner class in java5, and the following code will throw an exception:
Scanner scanner = new Scanner
(new File(args[0]));
int dealId;
while (scanner.hasNextLine()) {
dealId = ...
0
votes
1answer
309 views
Compile pdftk with /libgcj.so.10 on centOS (Redhat)
Has anyone successfully complied pdftk with the /libgcj.so.10 library? Bluehost upgraded from centOS 5 to centOS6 and blew away the library I needed, telling me this is the new one. I took a look in ...
4
votes
1answer
532 views
Integrate c/c++ with Java native code as shared library (compiled by gcj)
gcj can compile Java code into native code. I am interested if Java is compiled into shared library, how we can use methods from the library in c/c++ programs.
I didn't succeed. The following is my ...
2
votes
2answers
435 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" ...
0
votes
1answer
96 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
237 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 ...
3
votes
2answers
687 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?
1
vote
0answers
166 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 ...
3
votes
1answer
127 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
2answers
525 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
399 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
5k 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
634 views
GCJ for NetBeans
How can I compile a Java program by GCJ compiler in NetBeans? Is there any plugin for it?
3
votes
1answer
564 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
2answers
2k 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?
4
votes
1answer
154 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 ...
2
votes
1answer
727 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
243 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 ...
8
votes
5answers
2k 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 ...
2
votes
2answers
952 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 ...
10
votes
4answers
4k 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.
1
vote
1answer
764 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
279 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. ...
0
votes
2answers
285 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 ...
52
votes
10answers
2k 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");
...
10
votes
6answers
6k 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
...
6
votes
3answers
764 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
542 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
1k 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 ...
1
vote
1answer
240 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 ...
4
votes
1answer
202 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 !
1
vote
2answers
765 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 ...
0
votes
3answers
736 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 ...
2
votes
3answers
603 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 ...
1
vote
2answers
246 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
270 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 ...
