LOGIN   :::   RECOVER PASS   :::   GET ACCOUNT    
Browse
  • Projects
  • Code (CVS)
  • Forums
  • News
  • Articles
  • Polls
  •  
    OpenCores
  • FAQ
  • CVS HowTo
  • Mission
  • Media
  • Tools
  • Advertise
  • Mirrors
  • Logos
  • Contact us
  • Job Opportunity
  •  
    Tools
  • Search
      
  • Download Cores (CVSGet)
  •  
    More
  • Wishbone
  • Perlilog
  • EDA tools
  • OpenTech CD
  •  
    Navigation: All forums > Cvs-checkins > Message List > Message Post

    Message

    Reply | Reply all
    Date Prev | Date Next | Thread Prev | Thread Next Date Index | Thread Index

    From: cvs at opencores.org<cvs@o...>
    Date: Sun Feb 25 21:32:17 CET 2007
    Subject: [cvs-checkins] MODIFIED: jop ...
    Top
    Date: 00/07/02 25:21:32

    Modified: jop build.xml
    Log:
    no message


    Revision Changes Path
    1.9 jop/build.xml

    http://www.opencores.org/cvsweb.shtml/jop/build.xml.diff?r1=1.8&r2=1.9

    (In the diff below, changes in quantity of whitespace are not shown.)

    Index: build.xml
    ===================================================================
    RCS file: /cvsroot/martin/jop/build.xml,v
    retrieving revision 1.8
    retrieving revision 1.9
    diff -u -b -r1.8 -r1.9
    --- build.xml 18 Nov 2006 02:15:41 -0000 1.8
    +++ build.xml 25 Feb 2007 20:32:17 -0000 1.9
    @@ -224,6 +224,9 @@
    <mkdir dir="${target}/dist/lib"/>
    <mkdir dir="${target}/dist/bin"/>

    + <tempfile property="empty.dir" destDir="${java.io.tmpdir}"/>
    + <mkdir dir="${empty.dir}"/>
    +
    <javac
    destdir="${target}/dist/classes"
    sourcepathref="target-source"
    @@ -234,9 +237,9 @@
    <!-- If any of these are an empty string, Ant uses the default instead. So, we give them dummy values. -->
    <!-- This works for all but classpath, for which Ant removes any non-existent paths. -->
    <!-- MS: this is needed for Java 1.5 -->
    - <bootclasspath path="null"/>
    - <extdirs path="null"/>
    - <classpath path="null"/>
    + <bootclasspath path="${empty.dir}"/>
    + <extdirs path="${empty.dir}"/>
    + <classpath path="${empty.dir}"/>
    <src path="${target}/src/common"/>
    <include name="com/jopdesign/sys/*.java"/>
    </javac>
    @@ -252,15 +255,17 @@
    <!-- This works for all but classpath, for which Ant removes any non-existent paths. -->
    <!-- MS: I did this for Java 1.5 tests with the collection classes
    don't remember if it is necessary for 1.5 - probably cleaner
    - for building a target with it's own JDK
    - <bootclasspath path="null"/>
    - <extdirs path="null"/>
    - <classpath path="null"/>
    + for building a target with its own JDK
    + <bootclasspath path="${empty.dir}"/>
    + <extdirs path="${empty.dir}"/>
    + <classpath path="${empty.dir}"/>
    -->
    <src path="${basedir}"/>
    <include name="${target-app}"/>
    </javac>

    + <delete dir="${empty.dir}"/>
    +
    <jar destfile="${target}/dist/lib/classes.zip" basedir="${target}/dist/classes"/>

    <antcall target="optimize"/>



     
    Copyright (c) 1999 OPENCORES.ORG. All rights reserved.