Re: JDK10 build problem: "--module-path"?

2018-02-15 Thread Ted Neward
, <build-dev@openjdk.java.net> Subject: Re: JDK10 build problem: "--module-path"? Ted, Yes, I'm sure :-) This is the relevant line from the source code for JDK 9, listing --module-path and -p as alternatives for this option.     MODULE_PATH("--module-path -p", &quo

Re: JDK10 build problem: "--module-path"?

2018-02-15 Thread Ted Neward
:50 AM To: Erik Joelsson <erik.joels...@oracle.com> Cc: Alan Bateman <alan.bate...@oracle.com>, Ted Neward <t...@tedneward.com>, Jonathan Gibbons <jonathan.gibb...@oracle.com>, "build-dev@openjdk.java.net" <build-dev@openjdk.java.net> Subject: Re: JDK

Re: JDK10 build problem: "--module-path"?

2018-02-15 Thread Martin Buchholz
Looking at https://packages.ubuntu.com/search?suite=all=all=any=openjdk-9-jdk=names it seems like Ubuntu ships whatever openjdk-9 is available at time of creation of a specific version, and doesn't update it afterwards, not even for the quarterly security patches. On Thu, Feb 15, 2018 at 7:42 AM,

Re: JDK10 build problem: "--module-path"?

2018-02-15 Thread Erik Joelsson
I have hit this same problem once for the same reason Alan describes. Ubuntu provided me with a really old EA build of 9. /Erik On 2018-02-15 00:05, Alan Bateman wrote: On 15/02/2018 06:32, Ted Neward wrote: Really?!? I thought the javac -help only listed -modulepath. Not to disbelieve

Re: JDK10 build problem: "--module-path"?

2018-02-15 Thread Jonathan Gibbons
Ted, Yes, I'm sure :-) This is the relevant line from the source code for JDK 9, listing --module-path and -p as alternatives for this option. MODULE_PATH("--module-path -p", "opt.arg.path", "opt.modulepath", STANDARD, FILEMANAGER),

Re: JDK10 build problem: "--module-path"?

2018-02-15 Thread Alan Bateman
On 15/02/2018 06:32, Ted Neward wrote: Really?!? I thought the javac -help only listed -modulepath. Not to disbelieve you *grin*, but are you sure? The reason I ask is (barring some really bizarre misconfiguration) I should be using the OpenJDK9 as the boot JDK for this, and I'm getting the

Re: JDK10 build problem: "--module-path"?

2018-02-14 Thread Ted Neward
Really?!? I thought the javac -help only listed -modulepath. Not to disbelieve you *grin*, but are you sure? The reason I ask is (barring some really bizarre misconfiguration) I should be using the OpenJDK9 as the boot JDK for this, and I'm getting the error. Ted Neward Author, Speaker, Mentor

Re: JDK10 build problem: "--module-path"?

2018-02-14 Thread Jonathan Gibbons
On 2/14/18 4:38 PM, Ted Neward wrote: I’m getting a weird error in my OpenJDK 10 (tip) build, where after pulling source and configure, I get a build error about the Java compiler being executed with “--module-path” as a parameter, which obviously isn’t a legitimate javac flag. I can't

Re: JDK10 build problem: "--module-path"?

2018-02-14 Thread David Holmes
On 15/02/2018 10:38 AM, Ted Neward wrote: I’m getting a weird error in my OpenJDK 10 (tip) build, where after pulling source and configure, I get a build error about the Java compiler being executed with “--module-path” as a parameter, which obviously isn’t a legitimate javac flag. Is this

JDK10 build problem: "--module-path"?

2018-02-14 Thread Ted Neward
I’m getting a weird error in my OpenJDK 10 (tip) build, where after pulling source and configure, I get a build error about the Java compiler being executed with “--module-path” as a parameter, which obviously isn’t a legitimate javac flag. Is this just me? Is anybody else able to repro