On the 0x1E8 day of Apache Harmony Oliver Deakin wrote:
> I have taken a look at the Linux makefile for launcher, and I notice
> that libhysig.so is not listed in MDLLIBFILES, but libhyport.so and
> libhythr.so are. Adding "$(DLLPATH)libhysig.so" to this line
> of the makefile solves the LD_LIBRARY_PATH problem for me.
> Do you see the same thing Egor?

I do. Thanks, Oliver!

Here is the patch:
--- working_classlib/modules/luni/src/main/native/launcher/linux/makefile       
(revision 447251)
+++ working_classlib/modules/luni/src/main/native/launcher/linux/makefile       
(working copy)
@@ -21,7 +21,7 @@
 BUILDFILES = $(SHAREDSUB)main.o $(SHAREDSUB)cmain.o \
        $(SHAREDSUB)launcher_copyright.o $(SHAREDSUB)strbuf.o \
        $(SHAREDSUB)libhlp.o
-MDLLIBFILES = $(DLLPATH)libhyprt.so $(DLLPATH)libhythr.so
+MDLLIBFILES = $(DLLPATH)libhyprt.so $(DLLPATH)libhythr.so $(DLLPATH)libhysig.so
 EXENAME = $(EXEPATH)java

 include $(HY_HDK)/build/make/rules.mk

'./java -showversion Hello' fails as previously.
...under investigation...

-- 
Egor Pasko, Intel Managed Runtime Division


---------------------------------------------------------------------
Terms of use : http://incubator.apache.org/harmony/mailing.html
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to