我正在尝试使用Global.Run
:
val settings = new Settings
val reporter = new ConsoleReporter(settings)
val compiler = new Global(settings, reporter)
val run = new compiler.Run // MissingRequirementError
run compile List(path)
不幸的是,我得到MissingRequirementError
说:
找不到编译器镜像中的对象scala.runtime
所以我的问题是如何使用Run
类以编程方式编译文件,或者我在这里做错了什么?
我试图找出是否可以更改settings
以使其正常工作。实际上我需要一个在path
的Scala文件中的类列表,不一定是完全可运行的输出。因此,如果符号仍未解析(如果我可以运行编译器阶段的子集),那就没问题了。
我也在Writing Scala Compiler Plugins,但如果我可以通过实例化编译器运行对象来运行它,我更喜欢这个解决方案。我偶然发现Is the Scala compiler reentrant?(类似的代码,不同的问题),这让我觉得它可能会像我想的那样工作。
编辑1:将Scala JAR添加到toolcp
(只是带有绝对路径的示例代码!)
根据评论我将scalac.bat
的类路径填充脚本改编为我的Scala代码:
// scalac.bat
// if "%_TOOL_CLASSPATH%"=="" (
// for %%f in ("!_SCALA_HOME!\lib\*") do call :add_cpath "%%f"
// for /d %%f in ("!_SCALA_HOME!\lib\*") do call :add_cpath "%%f"
// )
new File("C:\\Program Files\\scala\\lib").listFiles.foreach(f => {
settings.classpath.append(f.getAbsolutePath)
settings.toolcp.append(f.getAbsolutePath)
})
答案 0 :(得分:2)
我使用bootclasspath
而不是toolcp
来运行它(感谢pedrofurla的提示):
val settings = new Settings
new File("C:\\Program Files\\scala\\lib").listFiles.foreach(f => {
settings.classpath.append(f.getAbsolutePath)
settings.bootclasspath.append(f.getAbsolutePath)
})
private val reporter = new ConsoleReporter(settings)
private val compiler = new Global(settings, reporter)
val run = new compiler.Run
run compile List(path)
编译器现在尝试编译文件。但是,这似乎与scalac.bat
无关。它以-cp
开始,这是正常的类路径,而bootclasspath
在控制台上与-bootclasspath
一起传递,在StandardScalaSettings
特征中可见:
val bootclasspath = PathSetting ("-bootclasspath", "Override location of bootstrap class files.", Defaults.scalaBootClassPath)