You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by dl...@apache.org on 2007/08/12 21:02:56 UTC

svn commit: r565117 - /harmony/enhanced/sandbox/bootjvm/bootJVM/jni/src/harmony/generic/0.0/src/Makefile

Author: dlydick
Date: Sun Aug 12 12:02:55 2007
New Revision: 565117

URL: http://svn.apache.org/viewvc?view=rev&rev=565117
Log:
Pick up thread library and math library.

Modified:
    harmony/enhanced/sandbox/bootjvm/bootJVM/jni/src/harmony/generic/0.0/src/Makefile

Modified: harmony/enhanced/sandbox/bootjvm/bootJVM/jni/src/harmony/generic/0.0/src/Makefile
URL: http://svn.apache.org/viewvc/harmony/enhanced/sandbox/bootjvm/bootJVM/jni/src/harmony/generic/0.0/src/Makefile?view=diff&rev=565117&r1=565116&r2=565117
==============================================================================
--- harmony/enhanced/sandbox/bootjvm/bootJVM/jni/src/harmony/generic/0.0/src/Makefile (original)
+++ harmony/enhanced/sandbox/bootjvm/bootJVM/jni/src/harmony/generic/0.0/src/Makefile Sun Aug 12 12:02:55 2007
@@ -68,8 +68,10 @@
 # Roster of Java source files
 include $(CFGDIR)/config_roster_jni_java.mak
 
-# Pick up JVM library
-LLFLAGS:=-ljvm
+# Linkage flags to pick up JVM library, Posix thread library, and
+# math library.
+LLFLAGS:=-ljvm -lpthread -lm
+
 
 # Targets to build
 JAR_TARGET=$(BINDIR)/bootjvm.$(JAVA_ARCHIVE)