|
From: Eric D. <ede...@sm...> - 2011-05-09 16:35:02
|
David,
on which platform are you trying to build?
Do you get a out of memory issue?
I have noticed that on Linux 64bit, the javac max memory was not enough.
I suggest you modify the do_compile macrodef of the core\build.xml file.
Please increase the memoryMaximumSize to 1024m or 2048m and let me know if it solves the issue and rerun the jar target:
<macrodef name="do_compile">
<attribute name="srcref" />
<attribute name="classpathref" />
<attribute name="output" />
<sequential>
<mkdir dir="@{output}" />
<javac destdir="@{output}" debug="${javac.debug}"
memoryMaximumSize="2048m" fork="yes" nowarn="yes">
<compilerarg line="${javac.args}" />
<classpath refid="@{classpathref}" />
<src refid="@{srcref}" />
</javac>
</sequential>
</macrodef>
Regards,
Eric
-----Message d'origine-----
De : Grant Birchmeier [mailto:gbi...@co...]
Envoyé : lundi 9 mai 2011 18:23
À : qui...@li...
Objet : Re: [Quickfixj-users] (no subject)
QuickFIX/J Documentation: http://www.quickfixj.org/documentation/
QuickFIX/J Support: http://www.quickfixj.org/support/
Did you try using "ant jar" like I suggested this morning to your
other mail on this same topic?
I can't help you with Eclipse because I don't use it, but Ant has
usually worked for me.
-Grant
On Mon, May 9, 2011 at 11:14 AM, David Hulme <ma...@da...> wrote:
> QuickFIX/J Documentation: http://www.quickfixj.org/documentation/
> QuickFIX/J Support: http://www.quickfixj.org/support/
>
>
>
>
>
> Following directions for Eclipse, This piece of shit doesn't _ckin build
>
>
>
>
>
> Buildfile: D:\Eclipse Workspaces\quickfixj-1.5.0-ws\quickfixj\core\build.xml
>
> check.generated.isuptodate:
>
> generate.code:
>
> compile:
>
> compile_main:
>
> [javac] Compiling 1850 source files to D:\Eclipse Workspaces\quickfixj-1.5.0-ws\quickfixj\core\target\classes\main
>
>
>
> BUILD FAILED
>
> D:\Eclipse Workspaces\quickfixj-1.5.0-ws\quickfixj\core\build.xml:81: The following error occurred while executing this line:
>
> D:\Eclipse Workspaces\quickfixj-1.5.0-ws\quickfixj\core\build.xml:89: The following error occurred while executing this line:
>
> D:\Eclipse Workspaces\quickfixj-1.5.0-ws\quickfixj\core\build.xml:109: Error running javac.exe compiler
>
>
>
> Total time: 1 second
>
>
>
> ------------------------------------------------------------------------------
> WhatsUp Gold - Download Free Network Management Software
> The most intuitive, comprehensive, and cost-effective network
> management toolset available today. Delivers lowest initial
> acquisition cost and overall TCO of any competing solution.
> http://p.sf.net/sfu/whatsupgold-sd
> _______________________________________________
> Quickfixj-users mailing list
> Qui...@li...
> https://lists.sourceforge.net/lists/listinfo/quickfixj-users
>
>
------------------------------------------------------------------------------
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network
management toolset available today. Delivers lowest initial
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
_______________________________________________
Quickfixj-users mailing list
Qui...@li...
https://lists.sourceforge.net/lists/listinfo/quickfixj-users
|