以前に Ceylon コンパイラ バージョン 1.1 で正常にコンパイルしたソースを Ceylon コンパイラ バージョン 1.2 でコンパイルしようとすると、次のエラー メッセージが表示されます。
source/com/example/helloworld/module.ceylon:2: error: version '1.1.0' of module 'ceylon.net' was compiled by an incompatible version of the compiler (binary version 7.0 of module is not compatible with binary version 8.0 of this compiler)
import ceylon.net "1.1.0" ;
^
source/com/example/helloworld/module.ceylon:2: error: version '1.1.0' of module 'ceylon.collection' was compiled by an incompatible version of the compiler (binary version 7.0 of module is not compatible with binary version 8.0 of this compiler)
import ceylon.net "1.1.0" ;
^
source/com/example/helloworld/module.ceylon:2: error: version '1.1.0' of module 'ceylon.io' was compiled by an incompatible version of the compiler (binary version 7.0 of module is not compatible with binary version 8.0 of this compiler)
import ceylon.net "1.1.0" ;
^
source/com/example/helloworld/module.ceylon:2: error: version '1.1.0' of module 'ceylon.file' was compiled by an incompatible version of the compiler (binary version 7.0 of module is not compatible with binary version 8.0 of this compiler)
import ceylon.net "1.1.0" ;
エラーメッセージの「 ... バイナリバージョン 8.0 ... 」はJavaのバージョンを指していると思います。
両方のコンパイルの試み (最初は Ceylon 1.1、2 番目は 1.2) で Java バージョン 8 を使用しましたが、それを 7 に戻したくありません。
Ceylon SDK を Java バージョン 8 でコンパイルすると役に立ちますか? Ceylon ディストリビューション全体とは別にそれを行うにはどうすればよいですか?
Ceylon SDK のソースをプロジェクトにインポートして、プロジェクトと一緒にコンパイルするにはどうすればよいですか?