java - Netbeans not using available memory during compilation -
using netbeans on linux, compiling program ~6000 lines long, , appear have reached threshold of sort. compilation time has jumped 1 minute on 25.
it's memory issue, ide taking 300meg , not 1 byte more, despite needing to. i've added -j-xmx600m
netbeans.conf
file, , modified xms
command 132m
, although log file reports:
compiler: hotspot client compiler heap memory usage: initial 132.0mb maximum 580.0mb non heap memory usage: initial 160.0kb maximum -1b garbage collector: copy (collections=23 total time spent=1s) garbage collector: marksweepcompact (collections=3 total time spent=0s)
it's not working.
is there configuration option in ide need tinkering with?
thanks incredibly helpful person on netbeans user mailing list, solved me.
it wasn't memory after all; bug in version 8u5 of jdk. switched down couple of versions, , works now.
Comments
Post a Comment