如何告诉 ant 使用特定的 javac 可执行文件进行构建?
如何告诉 ant
从命令行使用特定的 javac 可执行文件?
我在我们分发的一个库中安装了 gcj,它是作为 gcc 的一部分构建的,并且我希望针对它构建一个特定的 Java 软件。然而,它似乎只是使用 system-gcc,并且诸如“-Dbuild.compiler”之类的选项似乎希望我指定某种 Java 类而不是文件路径。
我希望 Makefile 中有类似 CC 的东西。
我确信这真的很简单,我只是很愚蠢。
需要明确的是,如果可能的话,我想避免自己编辑构建文件。是否没有一些标准方法可以简单地在命令行上指定 ant 的编译器?我不介意构建文件在某种意义上“行为良好”的假设。
How can I tell ant
to use a specific javac executable from the command line?
I have an installation of gcj, built as part of gcc, within a library we distribute, and I'd like to have a particular piece of Java software built against that. However, it just seems to use the system-gcc, and options such as "-Dbuild.compiler" seem to want me to specify some kind of Java class rather than a filepath.
I was hoping for something similar to CC in Makefiles.
I'm sure it's something really simple, and I'm just being stupid.
To be clear, I'd like to avoid editing the build file myself if possible. Is there not some standard way to simply specify the compiler on the command-line to ant? I don't mind the assumption that the buildfile is "well-behaved" in some sense.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您使用 Ant 1.6 或更高版本,则可以设置
javac
属性fork="yes"
。这使您能够在使用 jikes、jvc、gcj、sj 或您正在使用的任何版本的javac
时指定可执行文件的路径。If you are using Ant 1.6 or higher, you can set the
javac
attributefork="yes"
. This gives you the ability to specify the path of your executable when using jikes, jvc, gcj, sj, or whatever version ofjavac
you are using.调用 ant 时的
-D
参数将使用 Ant 脚本内命令行中的属性。它的使用形式为:ant -Dmyvar=true
其中
myvar
是属性的名称,true
是您设置的值。想在你的脚本中使用。最简单的方法是使用 javac 可执行属性的属性。
然后在命令行上你可以调用:
The
-D
argument when calling ant will use a property from the command line inside of the Ant script. The form that it is used in is:ant -Dmyvar=true
Where
myvar
is the name of the property, andtrue
is the value you want to use in your script.The easiest way then would be to use a property for your javac executable attributes.
and then on the command line you could call:
从 javac 任务页面:
按照我的理解,您需要编写一个实现 CompilerAdapter 并使用您的编译器的类。然后 typedef 该任务并在 javac 编译器属性中使用它。
From the javac task page:
The way I read this, you need to write a class that implements CompilerAdapter and uses your compiler. Then typedef that task and use it in the javac compiler attribute.
我之前使用 Ant Exec 任务做过类似的事情。请参阅http://ant.apache.org/manual/Tasks/exec.html
它允许您调用特定的系统命令。在我们的例子中,我们需要调用 Delphi(不要问)来为特定项目构建一些 DLL。 exec 命令还允许您调用 gcj 而不是 javac。
I've done something similiar before, using the Ant Exec task. See http://ant.apache.org/manual/Tasks/exec.html
It allows you to call a specific system command. In our case, we needed to call Delphi (don't ask) to build some DLL's for a particular project. The exec command would also allow you to call gcj instead of javac.