Re: default value for configurable bootclasspath in javac

2021-04-19 Thread basinilya
I managed to solve the problem with a script: var bootclasspath = project.getProperty("javac.bootclasspath"); /* bootclasspath="" fails with Eclipse Compiler */ if (bootclasspath)

default value for configurable bootclasspath in javac

2021-04-14 Thread basinilya
Hi. I've got the following in my build xml: The idea is to not alter bootclasspath when the caller did not provide an explicit -Djavac.bootclasspath=... An empty string as the default value works fine with Sun Javac, but it fails wit