This is the mail archive of the java@gcc.gnu.org mailing list for the Java project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
I can compile the jar on a Linux but not solaris due to a emit bug. I can't compile the *.java anywhere, due to a bug. So I am trying to comprimise by compiling the java byte code.
A quick recap The most annoying example is this ../../kernel/com/netfuel/dir/dds/StorageProvider$1DomainStarter.class should compile to ../../kernel/com/netfuel/dir/dds/StorageProvider$1DomainStarter.o and then get archived.
%.o:%.class
$(GCJ) -c -o '$@' $(GCJFLAGS) '$<'%_g.o:%.class
$(GCJ) -c -o '$@' $(GCJFLAGS) '$<'
GCJ_BOOT_JAVA_PARTS=$(shell find ../com -name "*.class") GCJ_BOOT_PARTS=$(GCJ_BOOT_JAVA_PARTS:.class=.o)
libboot.a: GCJFLAGS=$(GCJFLAGS) -I.. -I. -I../../kernel $(OPTIMIZE_FLAGS)
libboot.a: $(GCJ_BOOT_PARTS) libboot.a($(GCJ_BOOT_PARTS))
if [ "$(RANLIB)" ] ; then $(RANLIB) $@; fi-- Steve Pribyl Steve AT NetFuel dot com Computer Infrastructure Practitioner
Attachment:
smime.p7s
Description: S/MIME Cryptographic Signature
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |