Hello,
a have makefile with one target, which runs java program.
all:
java -Xmx2G -cp ./numerika_java/classes/ numeric.fem.vector.ElementVe
ctorStatic
When I run the program with -Xmx2G 'manually' from command line
java -Xmx2G -cp ./numerika_java/classes/ numeric.fem.scalar.ElementScalarStatic
everything works fine.
When I call the make target by make all, I recieved error
Error occurred during initialization of VM
Could not reserve enough space for object heap
Could not create the Java virtual machine.
make: *** [all] Error 1
I have to go down with Xmx memory to approx 1500M, then it runs from make with no error too.
I use linux with standard make.
I'll be thankfull for any suggestions.
Miro