ld
How to link a gas assembly program that uses the C standard library with ld without using gcc?
As an exercise to learn more precisely how c programs work and what minimum level of content must exist for a program to be able to use libc, I\'ve taken it upon myself to attempt开发者_Python百科 to[详细]
2023-01-13 01:00 分类:问答Porting NewLib for my OS: some questions
I am trying to port NewLib for my OS (I am following this tutorial:http://wiki.osdev.org/Porting_Newlib), and I have some questions.[详细]
2023-01-10 21:26 分类:问答ld can't find lib to link
The following is an example to describe my problem: ld -Lpath1 -Lpath2 -lA -lB -Xlinker -T -Xlinker \\[详细]
2023-01-09 13:49 分类:问答How to get around "multiple defined symbols" in linking with gcc
I am using an older system that has gcc 2.95.3, I have to link in two objects that although they have nothing to do with each other, they each have similarly named methods.I can\'t rename either of th[详细]
2023-01-07 08:18 分类:问答Fedora 8/EC2: ld cannot find library
I\'m trying to get gcc to work on an Amazon EC2 image of Fedora 8, but I\'m running into an issue with the libraries.ld is not finding -lz -lm -lbz2.[详细]
2023-01-06 20:12 分类:问答gcc linker error: version node not found for symbol
I\'m trying to build a shared library, and I get the following error: libavformat.so: version node not found[详细]
2023-01-04 19:25 分类:问答ld doesn't recognize object file
I\'m having problems with compiling a project I\'m working on. Everything else works just fine, but when I compile, I get this error message:[详细]
2023-01-04 11:50 分类:问答_dl_runtime_resolve -- When do the shared objects get loaded in to memory?
We have a message processing system with high performance demands.Recently we have noticed that the first message takes many times longer then subsequent messages.A bunch of transfo开发者_开发知识库rm[详细]
2023-01-03 09:12 分类:问答Where can I find documentation on assembler?
I wrote a very short program that parses a \"program\" using python and converts it to assembler, allowing 开发者_如何转开发me to compile my little proramming language to an executable.[详细]
2022-12-31 15:47 分类:问答What does collect2.exe do?
When I examine the code generated by gcc -v -o proggy.exe proggy.o I find that the command line expands into a large bunch of library options and libraries, all of which开发者_运维百科 are linked usin[详细]
2022-12-30 06:24 分类:问答