g++-3 / gcc-3 是什么?

发布于 2024-09-17 12:47:13 字数 487 浏览 5 评论 0原文

尝试使用 g++ 从 cygwin 进行 make 时,我收到了“访问被拒绝”错误消息。谷歌搜索错误消息,我发现引用 g++-3 和 gcc-3 http://www.linuxquestions.org/questions/linux- software-2/cygwin-g-3-exe-gcc-3-exe-corrupted-to-g-3-exe-dam-and-gcc-3-exe-dam-769722/)...

将编译器更改为 g++-3 似乎可以解决问题,尽管我找不到有关 g++-3 和 gcc-3 的太多信息。

任何想法我都可以在其中找到有关它们的更多信息>

Trying to use make from cygwin using g++ I was getting Access Denied error messages. Googling the error message I found a positing referring to g++-3 and gcc-3 http://www.linuxquestions.org/questions/linux-software-2/cygwin-g-3-exe-gcc-3-exe-corrupted-to-g-3-exe-dam-and-gcc-3-exe-dam-769722/)...

Changing the compiler to g++-3 seems to fix the problem although I cannot find much information about both g++-3 and gcc-3.

Any ideas where I can find more information about them>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

许仙没带伞 2024-09-24 12:47:14

我猜它是 g++ 的版本 3。就像 g++-4.1.2 是版本 4.1.2 一样

I'm guessing it's version 3 of g++. just like g++-4.1.2 would be version 4.1.2

一个人的旅程 2024-09-24 12:47:13

为了回答 Pete 答案评论中的观点,您在终端上输入的 gcc 只是实际 gcc 二进制文件的符号链接。它使升级变得容易,因为您只需将符号链接指向其他内容即可。


$ which gcc
/usr/bin/gcc
$ ll /usr/bin/gcc
lrwxrwxrwx 1 root root 7 2010-09-01 11:10 /usr/bin/gcc -> gcc-4.4*

To answer your point in the comment to Pete's answer, the gcc you type on the terminal is just a symlink to the actual gcc binary. It makes it easy to upgrade since you can just point the symlink to something else.


$ which gcc
/usr/bin/gcc
$ ll /usr/bin/gcc
lrwxrwxrwx 1 root root 7 2010-09-01 11:10 /usr/bin/gcc -> gcc-4.4*

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