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]

Re: Fw: Don't build libgcj on irix6.5 - still doesn't work


>>>>> "Bryce" == Bryce McKinlay <bryce@albatross.co.nz> writes:

Bryce> Here's the patch. I think we should just go with the simple
Bryce> "echo" command for now. If it doesnt work or anyone complains,
Bryce> we can always do something trickier later.

Bryce> ok?

Definitely.

Does this make the build complete on Irix now?  That would be cool.

Bryce> +libgcj.la: $(libgcj_la_OBJECTS) $(libgcj_la_DEPENDENCIES)
Bryce> +	@echo $(libgcj_la_OBJECTS) > libgcj.objectlist;
Bryce> +	@echo $(libgcj_la_LIBADD) >> libgcj.objectlist;
Bryce> +	$(libgcj_la_LINK) -objectlist libgcj.objectlist -rpath $(toolexeclibdir) $(libgcj_la_LDFLAGS) $(LIBS)

Is this what automake should do by default?  Or maybe if automake can
discover that the list is likely to be "longish"?

Would it work to do:

	echo $(libgcj_la_OBJECTS) > List
	...libtool stuff... -objectlist List $(...LIBADD) ...

?

That would be most convenient for automake.

Tom


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]