From nicolas.geoffray at lip6.fr Sat Apr 9 10:22:23 2011 From: nicolas.geoffray at lip6.fr (Nicolas Geoffray) Date: Sat, 09 Apr 2011 17:22:23 -0000 Subject: [vmkit-commits] [vmkit] r129218 - in /vmkit/trunk: include/j3/JavaLLVMCompiler.h lib/J3/Compiler/JavaLLVMCompiler.cpp Message-ID: <20110409172224.005BB2A6C12E@llvm.org> Author: geoffray Date: Sat Apr 9 12:22:23 2011 New Revision: 129218 URL: http://llvm.org/viewvc/llvm-project?rev=129218&view=rev Log: Update DIFactory -> DIBuilder after LLVM API change. Modified: vmkit/trunk/include/j3/JavaLLVMCompiler.h vmkit/trunk/lib/J3/Compiler/JavaLLVMCompiler.cpp Modified: vmkit/trunk/include/j3/JavaLLVMCompiler.h URL: http://llvm.org/viewvc/llvm-project/vmkit/trunk/include/j3/JavaLLVMCompiler.h?rev=129218&r1=129217&r2=129218&view=diff ============================================================================== --- vmkit/trunk/include/j3/JavaLLVMCompiler.h (original) +++ vmkit/trunk/include/j3/JavaLLVMCompiler.h Sat Apr 9 12:22:23 2011 @@ -21,7 +21,7 @@ namespace llvm { class BasicBlock; - class DIFactory; + class DIBuilder; } namespace j3 { @@ -46,7 +46,7 @@ protected: llvm::Module* TheModule; - llvm::DIFactory* DebugFactory; + llvm::DIBuilder* DebugFactory; J3Intrinsics JavaIntrinsics; private: @@ -82,7 +82,7 @@ virtual void* GenerateStub(llvm::Function* F) = 0; void addJavaPasses(); - llvm::DIFactory* getDebugFactory() { + llvm::DIBuilder* getDebugFactory() { return DebugFactory; } Modified: vmkit/trunk/lib/J3/Compiler/JavaLLVMCompiler.cpp URL: http://llvm.org/viewvc/llvm-project/vmkit/trunk/lib/J3/Compiler/JavaLLVMCompiler.cpp?rev=129218&r1=129217&r2=129218&view=diff ============================================================================== --- vmkit/trunk/lib/J3/Compiler/JavaLLVMCompiler.cpp (original) +++ vmkit/trunk/lib/J3/Compiler/JavaLLVMCompiler.cpp Sat Apr 9 12:22:23 2011 @@ -10,6 +10,7 @@ #include "llvm/LLVMContext.h" #include "llvm/Module.h" #include "llvm/PassManager.h" +#include "llvm/Analysis/DIBuilder.h" #include "llvm/Analysis/LoopPass.h" #include "llvm/Target/TargetData.h" @@ -25,7 +26,7 @@ JavaLLVMCompiler::JavaLLVMCompiler(const std::string& str) : TheModule(new llvm::Module(str, *(new LLVMContext()))), - DebugFactory(new DIFactory(*TheModule)), + DebugFactory(new DIBuilder(*TheModule)), JavaIntrinsics(TheModule) { enabledException = true; @@ -88,10 +89,10 @@ MDNode* JavaLLVMCompiler::GetDbgSubprogram(JavaMethod* meth) { if (getMethodInfo(meth)->getDbgSubprogram() == NULL) { - MDNode* node = DebugFactory->CreateSubprogram(DIDescriptor(), "", "", - "", DIFile(), 0, - DIType(), false, - false); + MDNode* node = DebugFactory->createFunction(DIDescriptor(), "", + "", DIFile(), 0, + DIType(), false, + false); DbgInfos.insert(std::make_pair(node, meth)); getMethodInfo(meth)->setDbgSubprogram(node); } From nicolas.geoffray at lip6.fr Sat Apr 9 10:25:57 2011 From: nicolas.geoffray at lip6.fr (Nicolas Geoffray) Date: Sat, 09 Apr 2011 17:25:57 -0000 Subject: [vmkit-commits] [vmkit] r129219 - /vmkit/branches/vmkit-029/ Message-ID: <20110409172557.7DCAD2A6C12E@llvm.org> Author: geoffray Date: Sat Apr 9 12:25:57 2011 New Revision: 129219 URL: http://llvm.org/viewvc/llvm-project?rev=129219&view=rev Log: Create release 0.29 . Added: vmkit/branches/vmkit-029/ (props changed) - copied from r129218, vmkit/trunk/ Propchange: vmkit/branches/vmkit-029/ ------------------------------------------------------------------------------ --- svn:ignore (added) +++ svn:ignore Sat Apr 9 12:25:57 2011 @@ -0,0 +1,13 @@ +do-find +Makefile.config +replace.sh +config.log +*.tmp +Release +do-conf +configure.out +config.status +Makefile.common +Release-Asserts +Debug + Propchange: vmkit/branches/vmkit-029/ ------------------------------------------------------------------------------ --- svn:mergeinfo (added) +++ svn:mergeinfo Sat Apr 9 12:25:57 2011 @@ -0,0 +1,2 @@ +/vmkit/branches/precise:112509-120199 +/vmkit/branches/release_028:115466-116298 From nicolas.geoffray at lip6.fr Sat Apr 9 10:28:42 2011 From: nicolas.geoffray at lip6.fr (Nicolas Geoffray) Date: Sat, 09 Apr 2011 17:28:42 -0000 Subject: [vmkit-commits] [vmkit] r129220 - /vmkit/branches/release_029/ Message-ID: <20110409172842.A3CD12A6C12E@llvm.org> Author: geoffray Date: Sat Apr 9 12:28:42 2011 New Revision: 129220 URL: http://llvm.org/viewvc/llvm-project?rev=129220&view=rev Log: Release 0.29 with correct branch naming. Added: vmkit/branches/release_029/ (props changed) - copied from r129219, vmkit/trunk/ Propchange: vmkit/branches/release_029/ ------------------------------------------------------------------------------ --- svn:ignore (added) +++ svn:ignore Sat Apr 9 12:28:42 2011 @@ -0,0 +1,13 @@ +do-find +Makefile.config +replace.sh +config.log +*.tmp +Release +do-conf +configure.out +config.status +Makefile.common +Release-Asserts +Debug + Propchange: vmkit/branches/release_029/ ------------------------------------------------------------------------------ --- svn:mergeinfo (added) +++ svn:mergeinfo Sat Apr 9 12:28:42 2011 @@ -0,0 +1,2 @@ +/vmkit/branches/precise:112509-120199 +/vmkit/branches/release_028:115466-116298 From nicolas.geoffray at lip6.fr Sat Apr 9 10:35:50 2011 From: nicolas.geoffray at lip6.fr (Nicolas Geoffray) Date: Sat, 09 Apr 2011 17:35:50 -0000 Subject: [vmkit-commits] [vmkit] r129221 - in /vmkit/branches/release_029: autoconf/configure.ac configure Message-ID: <20110409173550.EDC4C2A6C12E@llvm.org> Author: geoffray Date: Sat Apr 9 12:35:50 2011 New Revision: 129221 URL: http://llvm.org/viewvc/llvm-project?rev=129221&view=rev Log: Move to version 0.29. Modified: vmkit/branches/release_029/autoconf/configure.ac vmkit/branches/release_029/configure Modified: vmkit/branches/release_029/autoconf/configure.ac URL: http://llvm.org/viewvc/llvm-project/vmkit/branches/release_029/autoconf/configure.ac?rev=129221&r1=129220&r2=129221&view=diff ============================================================================== --- vmkit/branches/release_029/autoconf/configure.ac (original) +++ vmkit/branches/release_029/autoconf/configure.ac Sat Apr 9 12:35:50 2011 @@ -31,12 +31,12 @@ dnl===-----------------------------------------------------------------------=== dnl Initialize autoconf and define the package name, version number and dnl email address for reporting bugs. -AC_INIT([vmkit],[0.29svn],[nicolas.geoffray at gmail.com]) +AC_INIT([vmkit],[0.29],[nicolas.geoffray at gmail.com]) dnl Provide a copyright substitution and ensure the copyright notice is included dnl in the output of --version option of the generated configure script. -AC_SUBST(VMKIT_COPYRIGHT,["Copyright (c) 2003-2010 Universite Pierre et Marie Curie."]) -AC_COPYRIGHT([Copyright (c) 2003-2010 Universite Pierre et Marie Curie.]) +AC_SUBST(VMKIT_COPYRIGHT,["Copyright (c) 2003-2011 Universite Pierre et Marie Curie."]) +AC_COPYRIGHT([Copyright (c) 2003-2011 Universite Pierre et Marie Curie.]) dnl Indicate that we require autoconf 2.59 or later. Ths is needed because we dnl use some autoconf macros only available in 2.59. Modified: vmkit/branches/release_029/configure URL: http://llvm.org/viewvc/llvm-project/vmkit/branches/release_029/configure?rev=129221&r1=129220&r2=129221&view=diff ============================================================================== --- vmkit/branches/release_029/configure (original) +++ vmkit/branches/release_029/configure Sat Apr 9 12:35:50 2011 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.65 for vmkit 0.29svn. +# Generated by GNU Autoconf 2.65 for vmkit 0.29. # # Report bugs to . # @@ -13,7 +13,7 @@ # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. # -# Copyright (c) 2003-2010 Universite Pierre et Marie Curie. +# Copyright (c) 2003-2011 Universite Pierre et Marie Curie. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## @@ -554,8 +554,8 @@ # Identity of this package. PACKAGE_NAME='vmkit' PACKAGE_TARNAME='vmkit' -PACKAGE_VERSION='0.29svn' -PACKAGE_STRING='vmkit 0.29svn' +PACKAGE_VERSION='0.29' +PACKAGE_STRING='vmkit 0.29' PACKAGE_BUGREPORT='nicolas.geoffray at gmail.com' PACKAGE_URL='' @@ -1289,7 +1289,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures vmkit 0.29svn to adapt to many kinds of systems. +\`configure' configures vmkit 0.29 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1355,7 +1355,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of vmkit 0.29svn:";; + short | recursive ) echo "Configuration of vmkit 0.29:";; esac cat <<\_ACEOF @@ -1470,14 +1470,14 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -vmkit configure 0.29svn +vmkit configure 0.29 generated by GNU Autoconf 2.65 Copyright (C) 2009 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. -Copyright (c) 2003-2010 Universite Pierre et Marie Curie. +Copyright (c) 2003-2011 Universite Pierre et Marie Curie. _ACEOF exit fi @@ -1935,7 +1935,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by vmkit $as_me 0.29svn, which was +It was created by vmkit $as_me 0.29, which was generated by GNU Autoconf 2.65. Invocation command line was $ $0 $@ @@ -2283,7 +2283,7 @@ -VMKIT_COPYRIGHT="Copyright (c) 2003-2010 Universite Pierre et Marie Curie." +VMKIT_COPYRIGHT="Copyright (c) 2003-2011 Universite Pierre et Marie Curie." @@ -6649,7 +6649,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by vmkit $as_me 0.29svn, which was +This file was extended by vmkit $as_me 0.29, which was generated by GNU Autoconf 2.65. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -6715,7 +6715,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -vmkit config.status 0.29svn +vmkit config.status 0.29 configured by $0, generated by GNU Autoconf 2.65, with options \\"\$ac_cs_config\\" From nicolas.geoffray at lip6.fr Sat Apr 9 12:38:33 2011 From: nicolas.geoffray at lip6.fr (Nicolas Geoffray) Date: Sat, 09 Apr 2011 19:38:33 -0000 Subject: [vmkit-commits] [vmkit] r129222 - in /vmkit/branches/release_029: autoconf/configure.ac configure mmtk/Makefile mmtk/java/build.xml mmtk/java/build.xml.in Message-ID: <20110409193833.9B4662A6C12E@llvm.org> Author: geoffray Date: Sat Apr 9 14:38:33 2011 New Revision: 129222 URL: http://llvm.org/viewvc/llvm-project?rev=129222&view=rev Log: Build fixes. Added: vmkit/branches/release_029/mmtk/java/build.xml.in Removed: vmkit/branches/release_029/mmtk/java/build.xml Modified: vmkit/branches/release_029/autoconf/configure.ac vmkit/branches/release_029/configure vmkit/branches/release_029/mmtk/Makefile Modified: vmkit/branches/release_029/autoconf/configure.ac URL: http://llvm.org/viewvc/llvm-project/vmkit/branches/release_029/autoconf/configure.ac?rev=129222&r1=129221&r2=129222&view=diff ============================================================================== --- vmkit/branches/release_029/autoconf/configure.ac (original) +++ vmkit/branches/release_029/autoconf/configure.ac Sat Apr 9 14:38:33 2011 @@ -626,6 +626,7 @@ AC_CONFIG_FILES([lib/J3/Classpath/Classpath.h]) AC_CONFIG_FILES([tools/llcj/LinkPaths.h]) AC_CONFIG_FILES([mmtk/java/src/org/j3/config/Selected.java]) +AC_CONFIG_FILES([mmtk/java/build.xml]) dnl Do special configuration of Makefiles AC_CONFIG_MAKEFILE(Makefile) Modified: vmkit/branches/release_029/configure URL: http://llvm.org/viewvc/llvm-project/vmkit/branches/release_029/configure?rev=129222&r1=129221&r2=129222&view=diff ============================================================================== --- vmkit/branches/release_029/configure (original) +++ vmkit/branches/release_029/configure Sat Apr 9 14:38:33 2011 @@ -6135,6 +6135,8 @@ ac_config_files="$ac_config_files mmtk/java/src/org/j3/config/Selected.java" +ac_config_files="$ac_config_files mmtk/java/build.xml" + ac_config_commands="$ac_config_commands Makefile" @@ -6843,6 +6845,7 @@ "lib/J3/Classpath/Classpath.h") CONFIG_FILES="$CONFIG_FILES lib/J3/Classpath/Classpath.h" ;; "tools/llcj/LinkPaths.h") CONFIG_FILES="$CONFIG_FILES tools/llcj/LinkPaths.h" ;; "mmtk/java/src/org/j3/config/Selected.java") CONFIG_FILES="$CONFIG_FILES mmtk/java/src/org/j3/config/Selected.java" ;; + "mmtk/java/build.xml") CONFIG_FILES="$CONFIG_FILES mmtk/java/build.xml" ;; "Makefile") CONFIG_COMMANDS="$CONFIG_COMMANDS Makefile" ;; "lib/Makefile") CONFIG_COMMANDS="$CONFIG_COMMANDS lib/Makefile" ;; Modified: vmkit/branches/release_029/mmtk/Makefile URL: http://llvm.org/viewvc/llvm-project/vmkit/branches/release_029/mmtk/Makefile?rev=129222&r1=129221&r2=129222&view=diff ============================================================================== --- vmkit/branches/release_029/mmtk/Makefile (original) +++ vmkit/branches/release_029/mmtk/Makefile Sat Apr 9 14:38:33 2011 @@ -9,7 +9,6 @@ LEVEL = .. DIRS = magic mmtk-j3 mmtk-alloc java inline -EXTRA_DIST = config/marksweep include $(LEVEL)/Makefile.config Removed: vmkit/branches/release_029/mmtk/java/build.xml URL: http://llvm.org/viewvc/llvm-project/vmkit/branches/release_029/mmtk/java/build.xml?rev=129221&view=auto ============================================================================== --- vmkit/branches/release_029/mmtk/java/build.xml (original) +++ vmkit/branches/release_029/mmtk/java/build.xml (removed) @@ -1,9 +0,0 @@ - - - - - - - - - Added: vmkit/branches/release_029/mmtk/java/build.xml.in URL: http://llvm.org/viewvc/llvm-project/vmkit/branches/release_029/mmtk/java/build.xml.in?rev=129222&view=auto ============================================================================== --- vmkit/branches/release_029/mmtk/java/build.xml.in (added) +++ vmkit/branches/release_029/mmtk/java/build.xml.in Sat Apr 9 14:38:33 2011 @@ -0,0 +1,9 @@ + + + + + + + + + From nicolas.geoffray at lip6.fr Sat Apr 9 12:43:42 2011 From: nicolas.geoffray at lip6.fr (Nicolas Geoffray) Date: Sat, 09 Apr 2011 19:43:42 -0000 Subject: [vmkit-commits] [vmkit] r129224 - /vmkit/branches/release_029/www/releases/vmkit-0.29.tar.bz2 Message-ID: <20110409194342.F083B2A6C12E@llvm.org> Author: geoffray Date: Sat Apr 9 14:43:42 2011 New Revision: 129224 URL: http://llvm.org/viewvc/llvm-project?rev=129224&view=rev Log: Add 0.29 release. Added: vmkit/branches/release_029/www/releases/vmkit-0.29.tar.bz2 (with props) Added: vmkit/branches/release_029/www/releases/vmkit-0.29.tar.bz2 URL: http://llvm.org/viewvc/llvm-project/vmkit/branches/release_029/www/releases/vmkit-0.29.tar.bz2?rev=129224&view=auto ============================================================================== Binary file - no diff available. Propchange: vmkit/branches/release_029/www/releases/vmkit-0.29.tar.bz2 ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream From nicolas.geoffray at lip6.fr Sat Apr 9 12:46:09 2011 From: nicolas.geoffray at lip6.fr (Nicolas Geoffray) Date: Sat, 09 Apr 2011 19:46:09 -0000 Subject: [vmkit-commits] [vmkit] r129225 - in /vmkit/trunk: autoconf/configure.ac configure mmtk/Makefile mmtk/java/build.xml mmtk/java/build.xml.in Message-ID: <20110409194609.2AA7E2A6C12E@llvm.org> Author: geoffray Date: Sat Apr 9 14:46:08 2011 New Revision: 129225 URL: http://llvm.org/viewvc/llvm-project?rev=129225&view=rev Log: Import build fixes from 0.29. Bump version to 0.30svn. Added: vmkit/trunk/mmtk/java/build.xml.in Removed: vmkit/trunk/mmtk/java/build.xml Modified: vmkit/trunk/autoconf/configure.ac vmkit/trunk/configure vmkit/trunk/mmtk/Makefile Modified: vmkit/trunk/autoconf/configure.ac URL: http://llvm.org/viewvc/llvm-project/vmkit/trunk/autoconf/configure.ac?rev=129225&r1=129224&r2=129225&view=diff ============================================================================== --- vmkit/trunk/autoconf/configure.ac (original) +++ vmkit/trunk/autoconf/configure.ac Sat Apr 9 14:46:08 2011 @@ -31,12 +31,12 @@ dnl===-----------------------------------------------------------------------=== dnl Initialize autoconf and define the package name, version number and dnl email address for reporting bugs. -AC_INIT([vmkit],[0.29svn],[nicolas.geoffray at gmail.com]) +AC_INIT([vmkit],[0.30svn],[nicolas.geoffray at gmail.com]) dnl Provide a copyright substitution and ensure the copyright notice is included dnl in the output of --version option of the generated configure script. -AC_SUBST(VMKIT_COPYRIGHT,["Copyright (c) 2003-2010 Universite Pierre et Marie Curie."]) -AC_COPYRIGHT([Copyright (c) 2003-2010 Universite Pierre et Marie Curie.]) +AC_SUBST(VMKIT_COPYRIGHT,["Copyright (c) 2003-2011 Universite Pierre et Marie Curie."]) +AC_COPYRIGHT([Copyright (c) 2003-2011 Universite Pierre et Marie Curie.]) dnl Indicate that we require autoconf 2.59 or later. Ths is needed because we dnl use some autoconf macros only available in 2.59. @@ -626,6 +626,7 @@ AC_CONFIG_FILES([lib/J3/Classpath/Classpath.h]) AC_CONFIG_FILES([tools/llcj/LinkPaths.h]) AC_CONFIG_FILES([mmtk/java/src/org/j3/config/Selected.java]) +AC_CONFIG_FILES([mmtk/java/build.xml]) dnl Do special configuration of Makefiles AC_CONFIG_MAKEFILE(Makefile) Modified: vmkit/trunk/configure URL: http://llvm.org/viewvc/llvm-project/vmkit/trunk/configure?rev=129225&r1=129224&r2=129225&view=diff ============================================================================== --- vmkit/trunk/configure (original) +++ vmkit/trunk/configure Sat Apr 9 14:46:08 2011 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.65 for vmkit 0.29svn. +# Generated by GNU Autoconf 2.65 for vmkit 0.30svn. # # Report bugs to . # @@ -13,7 +13,7 @@ # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. # -# Copyright (c) 2003-2010 Universite Pierre et Marie Curie. +# Copyright (c) 2003-2011 Universite Pierre et Marie Curie. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## @@ -554,8 +554,8 @@ # Identity of this package. PACKAGE_NAME='vmkit' PACKAGE_TARNAME='vmkit' -PACKAGE_VERSION='0.29svn' -PACKAGE_STRING='vmkit 0.29svn' +PACKAGE_VERSION='0.30svn' +PACKAGE_STRING='vmkit 0.30svn' PACKAGE_BUGREPORT='nicolas.geoffray at gmail.com' PACKAGE_URL='' @@ -1289,7 +1289,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures vmkit 0.29svn to adapt to many kinds of systems. +\`configure' configures vmkit 0.30svn to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1355,7 +1355,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of vmkit 0.29svn:";; + short | recursive ) echo "Configuration of vmkit 0.30svn:";; esac cat <<\_ACEOF @@ -1470,14 +1470,14 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -vmkit configure 0.29svn +vmkit configure 0.30svn generated by GNU Autoconf 2.65 Copyright (C) 2009 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. -Copyright (c) 2003-2010 Universite Pierre et Marie Curie. +Copyright (c) 2003-2011 Universite Pierre et Marie Curie. _ACEOF exit fi @@ -1935,7 +1935,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by vmkit $as_me 0.29svn, which was +It was created by vmkit $as_me 0.30svn, which was generated by GNU Autoconf 2.65. Invocation command line was $ $0 $@ @@ -2283,7 +2283,7 @@ -VMKIT_COPYRIGHT="Copyright (c) 2003-2010 Universite Pierre et Marie Curie." +VMKIT_COPYRIGHT="Copyright (c) 2003-2011 Universite Pierre et Marie Curie." @@ -6135,6 +6135,8 @@ ac_config_files="$ac_config_files mmtk/java/src/org/j3/config/Selected.java" +ac_config_files="$ac_config_files mmtk/java/build.xml" + ac_config_commands="$ac_config_commands Makefile" @@ -6649,7 +6651,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by vmkit $as_me 0.29svn, which was +This file was extended by vmkit $as_me 0.30svn, which was generated by GNU Autoconf 2.65. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -6715,7 +6717,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -vmkit config.status 0.29svn +vmkit config.status 0.30svn configured by $0, generated by GNU Autoconf 2.65, with options \\"\$ac_cs_config\\" @@ -6843,6 +6845,7 @@ "lib/J3/Classpath/Classpath.h") CONFIG_FILES="$CONFIG_FILES lib/J3/Classpath/Classpath.h" ;; "tools/llcj/LinkPaths.h") CONFIG_FILES="$CONFIG_FILES tools/llcj/LinkPaths.h" ;; "mmtk/java/src/org/j3/config/Selected.java") CONFIG_FILES="$CONFIG_FILES mmtk/java/src/org/j3/config/Selected.java" ;; + "mmtk/java/build.xml") CONFIG_FILES="$CONFIG_FILES mmtk/java/build.xml" ;; "Makefile") CONFIG_COMMANDS="$CONFIG_COMMANDS Makefile" ;; "lib/Makefile") CONFIG_COMMANDS="$CONFIG_COMMANDS lib/Makefile" ;; Modified: vmkit/trunk/mmtk/Makefile URL: http://llvm.org/viewvc/llvm-project/vmkit/trunk/mmtk/Makefile?rev=129225&r1=129224&r2=129225&view=diff ============================================================================== --- vmkit/trunk/mmtk/Makefile (original) +++ vmkit/trunk/mmtk/Makefile Sat Apr 9 14:46:08 2011 @@ -9,7 +9,6 @@ LEVEL = .. DIRS = magic mmtk-j3 mmtk-alloc java inline -EXTRA_DIST = config/marksweep include $(LEVEL)/Makefile.config Removed: vmkit/trunk/mmtk/java/build.xml URL: http://llvm.org/viewvc/llvm-project/vmkit/trunk/mmtk/java/build.xml?rev=129224&view=auto ============================================================================== --- vmkit/trunk/mmtk/java/build.xml (original) +++ vmkit/trunk/mmtk/java/build.xml (removed) @@ -1,9 +0,0 @@ - - - - - - - - - Added: vmkit/trunk/mmtk/java/build.xml.in URL: http://llvm.org/viewvc/llvm-project/vmkit/trunk/mmtk/java/build.xml.in?rev=129225&view=auto ============================================================================== --- vmkit/trunk/mmtk/java/build.xml.in (added) +++ vmkit/trunk/mmtk/java/build.xml.in Sat Apr 9 14:46:08 2011 @@ -0,0 +1,9 @@ + + + + + + + + + From nicolas.geoffray at lip6.fr Sat Apr 9 12:47:27 2011 From: nicolas.geoffray at lip6.fr (Nicolas Geoffray) Date: Sat, 09 Apr 2011 19:47:27 -0000 Subject: [vmkit-commits] [vmkit] r129226 - /vmkit/trunk/www/releases/index.html Message-ID: <20110409194727.3101F2A6C12E@llvm.org> Author: geoffray Date: Sat Apr 9 14:47:26 2011 New Revision: 129226 URL: http://llvm.org/viewvc/llvm-project?rev=129226&view=rev Log: Add download link for vmkit 0.29. Modified: vmkit/trunk/www/releases/index.html Modified: vmkit/trunk/www/releases/index.html URL: http://llvm.org/viewvc/llvm-project/vmkit/trunk/www/releases/index.html?rev=129226&r1=129225&r2=129226&view=diff ============================================================================== --- vmkit/trunk/www/releases/index.html (original) +++ vmkit/trunk/www/releases/index.html Sat Apr 9 14:47:26 2011 @@ -27,6 +27,11 @@