在 Ubuntu Natty 上静态链接 GCJ 应用程序
我正在尝试静态链接 GCJ 应用程序,但看起来某处存在一些配置错误。我只是在 natty 上使用标准 gcj 安装,并且安装了 libgcj11 和 libgcj11-dev 。
我的测试应用程序是:
class HelloWorldApp {
public static void main(String[] args) {
System.out.println("Hello World!"); // Display the string.
}
}
我做:
gcj -static-libgcj --main=HelloWorldApp HelloWorldApp.java
然后我收到以下错误
/usr/bin/ld: cannot find -lgcj
collect2: ld returned 1 exit status
有人知道如何解决这个问题吗?
I'm trying to statically link a GCJ application and it looks like theres some misconfiguration somewhere. I'm just using the standard gcj installation on natty and I have both libgcj11 and libgcj11-dev installed.
My test application is:
class HelloWorldApp {
public static void main(String[] args) {
System.out.println("Hello World!"); // Display the string.
}
}
I do:
gcj -static-libgcj --main=HelloWorldApp HelloWorldApp.java
then i get the following error
/usr/bin/ld: cannot find -lgcj
collect2: ld returned 1 exit status
Anyone know how to fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
发行版通常不附带 libgcj.a。无论如何,静态链接对于 gcj 来说工作得不太好,主要是因为并不是所有的类依赖项都可以找到——编译的资源以及核心库中反射的使用会导致链接时东西丢失,除非你请特别注意用手将它们连接起来。
Distros generally do not ship libgcj.a. Static linking does not work extremely well with gcj, anyway, mostly because not all of the class dependencies can be found -- compiled-in resources and also the use of reflection in the core library cause things to go missing at link time, unless you take special care to link them in by hand.