Re: [abc-users] Re: compiler error when compiling berkeley DB

From: Thomas Pawlitzki <mailinglist_at_pawlitzki.name>
Date: Wed, 19 Mar 2008 20:10:05 +0100

Hi Pavel,

> This looks like a bug in the new abc frontend, so we're very keen on figuring
> out what's going on. Could you provide a link (or archive) of the source
> you're trying to compile, as well as the command line you run and any other
> information that might help us reproduce the issue?

You can get the sources from
http://www.oracle.com/technology/software/products/berkeley-db/je/index.html

 I tried version 2.1.30 as this version do not use Java5 features.

To compile the sources you need a j2ee.jar

I use an ant script to invoke the abc.

Here are the relevant lines

<project name="abc">

        <property file="ant.properties"/>

        <path id="abc.classpath">
                <fileset dir="${abc.lib}">
                        <include name="*.jar" />
                </fileset>

                <fileset dir="${abc.extlib}">
                        <include name="*.jar" />
                </fileset>

        </path>

        <target name="abc">
                <java fork="true" classname="abc.main.Main" maxmemory="512m">
                        <classpath refid="abc.classpath">
                        </classpath>
                        <arg line="${args}" />
                </java>
        </target>

        <!-- =================================
          target: build-berkely
         ================================= -->
        <target name="build-berkeley" description="build-berkeley">
                <antcall target="abc">
                        <param name="args" value="-verbose -ext abc.ja -classpath
lib/abc-runtime.jar;../abc-head-berkeley/lib/jboss-j2ee.jar
-sourceroots ../abc-head-berkeley/je-2.1.30/src -d
../abc-head-berkeley/je-2.1.30/classes" />
                </antcall>
        </target>

</project>

If you need more detailed information let me know.

Greetings,
Thomas
Received on Wed Mar 19 2008 - 19:10:09 GMT

This archive was generated by hypermail 2.2.0 : Thu Mar 27 2008 - 12:10:11 GMT