You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by gs...@apache.org on 2006/11/08 16:53:42 UTC

svn commit: r472524 - in /incubator/harmony/enhanced/drlvm/trunk: build/make/components/vm/hythr.xml build/make/components/vm/vmcore.xml build/make/targets/common_extra.xml build/make/targets/common_vm.xml vm/vmcore/include/version_svn_tag.h

Author: gshimansky
Date: Wed Nov  8 07:53:42 2006
New Revision: 472524

URL: http://svn.apache.org/viewvc?view=rev&rev=472524
Log:
Applied HARMONY-1907 [drlvm][threading] Stack size attribute has no effect.

Tests passed on ubuntu


Modified:
    incubator/harmony/enhanced/drlvm/trunk/build/make/components/vm/hythr.xml
    incubator/harmony/enhanced/drlvm/trunk/build/make/components/vm/vmcore.xml
    incubator/harmony/enhanced/drlvm/trunk/build/make/targets/common_extra.xml
    incubator/harmony/enhanced/drlvm/trunk/build/make/targets/common_vm.xml
    incubator/harmony/enhanced/drlvm/trunk/vm/vmcore/include/version_svn_tag.h

Modified: incubator/harmony/enhanced/drlvm/trunk/build/make/components/vm/hythr.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/drlvm/trunk/build/make/components/vm/hythr.xml?view=diff&rev=472524&r1=472523&r2=472524
==============================================================================
--- incubator/harmony/enhanced/drlvm/trunk/build/make/components/vm/hythr.xml (original)
+++ incubator/harmony/enhanced/drlvm/trunk/build/make/components/vm/hythr.xml Wed Nov  8 07:53:42 2006
@@ -95,11 +95,11 @@
             </select>
 
             <select os="lnx">
-                <syslibset libs="rt" />
+                <syslibset libs="pthread,rt" />
                 <linkerarg value="-Wl,-init" />
                 <linkerarg value="-Wl,hythread_library_init" />
                 <linkerarg value="-Wl,--version-script,${src}/thread/src/hythr.exp" />
-            </select>
+           </select>
 
             <select os="win">
                 <syslibset libs="advapi32,ws2_32" />

Modified: incubator/harmony/enhanced/drlvm/trunk/build/make/components/vm/vmcore.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/drlvm/trunk/build/make/components/vm/vmcore.xml?view=diff&rev=472524&r1=472523&r2=472524
==============================================================================
--- incubator/harmony/enhanced/drlvm/trunk/build/make/components/vm/vmcore.xml (original)
+++ incubator/harmony/enhanced/drlvm/trunk/build/make/components/vm/vmcore.xml Wed Nov  8 07:53:42 2006
@@ -292,13 +292,6 @@
 
             <select os="lnx">
                 <syslibset type="shared" libs="m,dl,stdc++,z,xml2,pthread,gcc_s,rt" /> 
-                <linkerarg value="--export-dynamic" />
-                <!--linkerarg value="-lz" />
-                <linkerarg value="-lxml2" />
-                <linkerarg value="-lm" />
-                <linkerarg value="-ldl" />
-                <linkerarg value="-lpthread" />
-                <linkerarg value="-lstdc++" /-->
             </select>
         </linker>
     </target>

Modified: incubator/harmony/enhanced/drlvm/trunk/build/make/targets/common_extra.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/drlvm/trunk/build/make/targets/common_extra.xml?view=diff&rev=472524&r1=472523&r2=472524
==============================================================================
--- incubator/harmony/enhanced/drlvm/trunk/build/make/targets/common_extra.xml (original)
+++ incubator/harmony/enhanced/drlvm/trunk/build/make/targets/common_extra.xml Wed Nov  8 07:53:42 2006
@@ -46,8 +46,8 @@
                 <syslibset libs="advapi32,odbc32,userenv,ws2_32,mswsock" />
             </select>
             <select os="lnx">
-                <syslibset type="static" libs="z,pthread,xml2" />
-                <syslibset type="shared" libs="m,dl,stdc++" />
+                <syslibset type="static" libs="z,xml2" />
+                <syslibset type="shared" libs="m,dl,stdc++,pthread" />
             </select>
             <select os="lnx" cxx="gcc">
                 <syslibset type="shared" libs="gcc_s" />

Modified: incubator/harmony/enhanced/drlvm/trunk/build/make/targets/common_vm.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/drlvm/trunk/build/make/targets/common_vm.xml?view=diff&rev=472524&r1=472523&r2=472524
==============================================================================
--- incubator/harmony/enhanced/drlvm/trunk/build/make/targets/common_vm.xml (original)
+++ incubator/harmony/enhanced/drlvm/trunk/build/make/targets/common_vm.xml Wed Nov  8 07:53:42 2006
@@ -207,8 +207,8 @@
                 <syslibset libs="advapi32,odbc32,userenv,ws2_32,mswsock" />
             </select>
             <select os="lnx" arch="ia32">
-                <syslibset type="static" libs="z,pthread,xml2" />
-                <syslibset type="shared" libs="m,dl,stdc++,rt" />
+                <syslibset type="static" libs="z,xml2" />
+                <syslibset type="shared" libs="m,dl,stdc++,rt,pthread" />
             </select>
             <select os="lnx" cxx="gcc" arch="ia32">
                 <linkerarg value="-lgcc_s" />

Modified: incubator/harmony/enhanced/drlvm/trunk/vm/vmcore/include/version_svn_tag.h
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/drlvm/trunk/vm/vmcore/include/version_svn_tag.h?view=diff&rev=472524&r1=472523&r2=472524
==============================================================================
--- incubator/harmony/enhanced/drlvm/trunk/vm/vmcore/include/version_svn_tag.h (original)
+++ incubator/harmony/enhanced/drlvm/trunk/vm/vmcore/include/version_svn_tag.h Wed Nov  8 07:53:42 2006
@@ -18,6 +18,6 @@
 #ifndef _VERSION_SVN_TAG_
 #define _VERSION_SVN_TAG_
 
-#define VERSION_SVN_TAG  "472165"
+#define VERSION_SVN_TAG  "472440"
 
 #endif // _VERSION_SVN_TAG_