Re: passing vmargs in JCC

2009-08-20 Thread Andi Vajda
On Thu, 20 Aug 2009, Christian Kofler wrote: here is a little patch for passing extra vmargs on the commandline. For every vmarg, you need to add a "--vmarg " to the command line. Thank you for the patch. I integrated a slightly modified version of it and added docs. Committed in rev 806273.

Re: passing vmargs in JCC

2009-08-20 Thread Christian Kofler
Hi, here is a little patch for passing extra vmargs on the commandline. For every vmarg, you need to add a "--vmarg " to the command line. Maybe it is useful for someone else as well. Christian Andi Vajda schrieb: On Tue, 18 Aug 2009, Christian Kofler wrote: would it be possible to pass a

Re: passing vmargs in JCC

2009-08-19 Thread Christian Kofler
Hi, I need to set some specific home folder for the library I want to wrap. It looks for some configuration files there - if this is not set, some exceptions are thrown. Cheers Christian Andi Vajda schrieb: On Tue, 18 Aug 2009, Christian Kofler wrote: would it be possible to pass additiona

Re: passing vmargs in JCC

2009-08-18 Thread Andi Vajda
On Tue, 18 Aug 2009, Christian Kofler wrote: would it be possible to pass additional vmargs to JCC? Adding support for a --vmargs command line argument to JCC could be done. Out of curiosity, what extra VM parameter were you thinking of using ? Andi..

Re: passing vmargs in JCC

2009-08-18 Thread Bill Janssen
You can do this with the "vmargs" keyword argument to initVM. Bill Christian Kofler wrote: > Hi, > > would it be possible to pass additional vmargs to JCC? > > Bill discovered this issue with "-Djava.awt.headless=true" and Andi > added this to cpp.py. > > Wouldn't it be nice to extend that t