Benutzer-Werkzeuge

Webseiten-Werkzeuge


en:configuration

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen RevisionVorhergehende Überarbeitung
Nächste ÜberarbeitungBeide Seiten der Revision
en:configuration [2019/03/08 18:07] – [Java] roehneren:configuration [2019/07/02 11:22] – [Mindstorms] roehner
Zeile 209: Zeile 209:
  
 Concepts of embedding Lego Mindstorms into curricular can be found at [[http://www.roberta-home.eu Roberta | Learning with Robots]]. Concepts of embedding Lego Mindstorms into curricular can be found at [[http://www.roberta-home.eu Roberta | Learning with Robots]].
 +
 +Starting with the JDK 9, the compiler parameter //-bootclasspath// used by Lejos is no longer supported. You get the error messages when compiling:
 +
 +<code>
 +error: option --boot-class-path not allowed with target 9
 +error: option -extdirs not allowed with target 9
 +</code>
 +
 +Open the batch file ''nxjc.bat'' to compile and replace at the end:
 +
 +<code>
 +"%JAVAC%" -bootclasspath "%NXJ_CP_NXT%" -extdirs "" %*</code>
 +with
 +<code>
 +"%JAVAC%" -classpath "%NXJ_CP_NXT%" %*
 +</code>
 +
 +
 +
  
 ===== Android ===== ===== Android =====
en/configuration.txt · Zuletzt geändert: 2023/02/25 19:57 von roehner