You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by va...@apache.org on 2008/02/05 14:08:55 UTC

svn commit: r618637 - in /harmony/enhanced/drlvm/trunk: build.xml make/vm/verifier-ext.xml

Author: varlax
Date: Tue Feb  5 05:08:54 2008
New Revision: 618637

URL: http://svn.apache.org/viewvc?rev=618637&view=rev
Log:
A build placeholder for HARMONY-5142 implement recompute stackmap for Eclipse TPTP 

Added:
    harmony/enhanced/drlvm/trunk/make/vm/verifier-ext.xml   (with props)
Modified:
    harmony/enhanced/drlvm/trunk/build.xml

Modified: harmony/enhanced/drlvm/trunk/build.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/build.xml?rev=618637&r1=618636&r2=618637&view=diff
==============================================================================
--- harmony/enhanced/drlvm/trunk/build.xml (original)
+++ harmony/enhanced/drlvm/trunk/build.xml Tue Feb  5 05:08:54 2008
@@ -91,6 +91,7 @@
         jitrino,
         gc_cc,
         gc_gen,
+        verifier-ext,
         deploy,
         deploy-relocate,
         deploy-canonical"
@@ -131,6 +132,10 @@
 
     <target name="verifier">
         <ant antfile="make/vm/verifier.xml"/>
+    </target>
+
+    <target name="verifier-ext" description="Build extentions library for verifier">
+        <ant antfile="make/vm/verifier-ext.xml"/>
     </target>
 
     <target name="vmcore" depends="encoder, port, hythr, verifier">

Added: harmony/enhanced/drlvm/trunk/make/vm/verifier-ext.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/make/vm/verifier-ext.xml?rev=618637&view=auto
==============================================================================
--- harmony/enhanced/drlvm/trunk/make/vm/verifier-ext.xml (added)
+++ harmony/enhanced/drlvm/trunk/make/vm/verifier-ext.xml Tue Feb  5 05:08:54 2008
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+  
+       http://www.apache.org/licenses/LICENSE-2.0
+  
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+-->
+
+<project name="verifier-ext" default="build" basedir="../..">
+    
+    <property name="component" value="verifier-ext"/>
+    <import file="common-vm.xml"/>
+    
+    <target name="build" depends="-common-vm">
+        <init-native/>
+        <make-native libname="verifier-ext" type="static">
+            <includepath>
+                <pathelement location="${vm.home}/vmcore/include" />
+                <pathelement location="${vm.home}/include" />
+            </includepath>
+            <compiler extends="common.cpp.compiler">
+                <fileset dir="${vm.home}/vmcore/src">
+                    <include name="verifier-3363/*/*.cpp"/>
+                </fileset>
+            </compiler>
+        </make-native>
+    </target>
+    
+    <target name="clean" >
+        <clean-native/>
+    </target>
+    
+</project>

Propchange: harmony/enhanced/drlvm/trunk/make/vm/verifier-ext.xml
------------------------------------------------------------------------------
    svn:eol-style = native