APT ANT 任务在 Eclipse 中失败,但在 shell 中工作
我有一个 ant javac 任务,它应该运行一些注释处理器。从批处理文件运行时它工作正常,但从
失败并出现Error running javac.exe compiler
eclipse 启动时 。正常的编译 javac 任务工作得很好。
我猜从 eclipse 开始的 ant 使用了一些不同的编译器?
如何将其更改为普通编译器?或者以任何方式让它发挥作用?
I have a ant javac
task which is supposed to run some annotation processor. It works fine when run from a batch file, but fails with
Error running javac.exe compiler
when started from eclipse. Normal compiling javac
tasks work just fine.
I guess ant started from eclipse uses some different compiler?
How do I change it to the normal compiler? Or make it work in any way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这通常是因为 缺少
tool.jar
注意:
fork="true"
可以 也有问题。It is usually because of a missing
tool.jar
Note: a
fork="true"
can also be problematic.