在 Ubuntu Natty 上静态链接 GCJ 应用程序

发布于 2024-12-10 02:02:30 字数 514 浏览 0 评论 0原文

我正在尝试静态链接 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦里寻她 2024-12-17 02:02:30

发行版通常不附带 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文