English 中文(简体)
我如何找到哪个版本的gcc corrresponds 和哪个版本的binutils?
原标题:How do I find which version of gcc corressponds to which version of binutils?

就像问题听起来一样

如果没有通用的方法回答任何特定版本配对的这个问题,有人至少可以回答一个具体问题,即gcc 3.4.6和ld 2.15.92.0.2是否对应?

谢谢

我在看问题:

< a href=" "https://stackoverflow.com/ questions/1239730/ help- with- linker-failer-gnu-linkonce-t" > help with linker underer:.gnu.linkonce.t

请解释这个链接错误:在.rodata 节中引用。

我犯的错误和问这些问题的人完全一样。

最佳回答

他们用不同的发布时间表将项目分开, 因此您的问题没有单一的答案。 它们之间的界面是像 ELF,. a 库和. o 对象文件格式一样, 这些格式非常具体, 所以除了新功能外, 完全没有理由同时开发它们 。

你是否想要回答一个具体问题?比如“我应该使用什么比纽尔版本?” 或“与费多拉15号运输的Gcc/比纽尔版本?”

问题回答

暂无回答




相关问题
gcc -fPIC seems to muck with optimization flags

Following along from this question: how-do-i-check-if-gcc-is-performing-tail-recursion-optimization, I noticed that using gcc with -fPIC seems to destroy this optimization. I am creating a shared ...

Generate assembler code from C file in linux

I would like to know how to generate assembler code from a C program using Unix. I tried the gcc: gcc -c file.c I also used firstly cpp and then try as but I m getting errors. I m trying to build an ...

Getting rid of pre-compiled headers

OK, I have old Metrowerks code for Mac and Windows where the previous developer used pre-compiled headers for every project that this code base builds. How does one get rid of Pre-compiled headers, ...

Include a .txt file in a .h in C++?

I have a number of places where I need to re-use some template code. Many classes need these items In a .h could I do something like: #include <xxx.txt> and place all of this code in the ....

How to compile for Mac OS X 10.5

I d like to compile my application for version 10.5 and forward. Ever since I upgraded to Snow Leopard and installed the latest XCode, gcc defaults to 10.6. I ve tried -isysroot /Developer/SDKs/...

热门标签