<div dir="ltr">Mark:<div><br></div><div>Thank you! Especially for the quick turnaround. That works, but now there is a warning about 'yield' becoming a restricted term in future versions (presumably of Java).<div><br></div><div>The warning is for </div><div><br></div><div>src/org/armedbear/lisp/java/swing/REPLConsole.java </div><div><br></div><div>at line 144. It says to invoke a method called 'yield', qualify the yield with a receiver or type name.</div><div><br></div><div>FYI: I sent my mail to the address specified in the README file.</div><div><br></div><div>Greg Baryza</div><div><br></div><div><br></div></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Tue, Apr 28, 2020 at 1:59 PM Mark Evenson <<a href="mailto:evenson@panix.com">evenson@panix.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">[For some reason Greg’s message wasn’t delivered via email, so I am replying “out of band” without the proper SMTP headers.]<br>
<br>
> I am an ABCL user, but by no means an expert.  I just unpacked the source<br>
> zip file and tried to compile it without success. I am using Java 14.0.1<br>
> and Ant 1.9.6. The resulting output is attached.      <br>
<br>
<br>
buildfile: C:\Users\baryza\__Library\Armed_Bear_Lisp\abcl-src-1.6.1\build.xml<br>
<br>
[…]<br>
<br>
abcl.compile.java:<br>
    [javac] Compiling 271 source files to C:\Users\baryza\__Library\Armed_Bear_Lisp\abcl-src-1.6.1\build\classes<br>
    [javac] warning: [options] bootstrap class path not set in conjunction with -source 6<br>
    [javac] error: Source option 6 is no longer supported. Use 7 or later.<br>
    [javac] error: Target option 6 is no longer supported. Use 7 or later.<br>
<br>
For Java 14, we need to tell the compiler to target the right source compatibility. <br>
<br>
There is a script in `ci/create-abcl-properties.bash` that works with Bash to do configuration, but I see from your logs that you are running under Windows.<br>
<br>
So do the steps manually:<br>
<br>
1.  copy `<a href="http://abcl.properties.in" rel="noreferrer" target="_blank">abcl.properties.in</a>` to `abcl.properties`<br>
<br>
2.  Change the line with `abcl.javac.source` to read<br>
<br>
abcl.javac.source=1.8<br>
<br>
<br>
Then you should be able to compile (or at least get past this error).<br>
<br>
Not sure what is going on with the mailing list…<br>
<br>
<br>
-- <br>
"A screaming comes across the sky.  It has happened before but there is nothing <br>
to compare to it now."<br>
<br>
<br>
<br>
<br>
<br>
</blockquote></div>