Tagged Questions

6
votes
3answers
273 views

Generating link-time error for deprecated functions

Is there a way with gcc and GNU binutils to mark some functions such that they will generate an error at link-time if used? My situation is that I have some library functions which I am not removing ...
5
votes
1answer
2k views

Help with linker failer: .gnu.linkonce.t

I'm having trouble linking a shared library using gcc 3.2.3 with binutils 2.18. When I try to link the library I get the following error: .gnu.linkonce.t_... referenced in section .rodata: defined in ...
4
votes
1answer
177 views

Does the order of -l and -L options in the GNU linker matter?

The -l option tells the linker to search the libraries in the standard dirs. And with -L, we can specify our own library directories for searching. Question: Does the sequence of order matters for ...
3
votes
1answer
545 views

Failure building cross-compiling 64-bit GCC

I'm trying to get a working gcc cross-compiler created that lives on my local machine [Darwin new-host-2.home 10.7.4 Darwin Kernel Version 10.7.4: Mon Apr 18 21:24:17 PDT 2011; ...
3
votes
3answers
1k views

Recipe for compiling binutils & gcc together?

Greetings, According the the gcc build instructions you can build binutils concurrently with building gcc (as well as gmp,mpc,etc). Here's what that page says : If you also intend to build ...
3
votes
2answers
296 views

Is there an advantage to upgrade Binutils from 2.16.1 to 2.19? Why?

In the PSPSDK (Homebrew) we are using the Binutils 2.16.1 to assemble and link the code for the PlayStation Portable, however that release is getting quite outdated (3 versions have superseded it). ...
2
votes
1answer
67 views

How gcc invokes as, ld and other binutils?

I was wondering how gcc knows where to find as and ld. Is their location hardcoded into gcc code or gcc just call "as" and we must have "as" location into our PATH variable? And in the last case, ...
2
votes
1answer
450 views

How to deal with recursive dependencies between static libraries using the binutils linker?

I'm porting an existing system from Windows to Linux. The build is structured with multiple static libraries. I ran into a linking error where a symbol (defined in libA) could not be found in an ...
2
votes
1answer
491 views

ELF shared library: relocation offset out of bounds

There is a software package elfutils which includes a program called eu-elflint for checking ELF binaries (just as lint for C - hence the name). Just for curiosity I have checked our own shared ...
1
vote
1answer
366 views

binutils ld emitting ARM BLX instructions when using armv4 target

I wish to compile C programs for a Samsung S3C2440 SoC (based on ARM920T core) running Linux 2.6.32.2 kernel. I have an existing Gentoo Linux install running on an ARM926EJS. I compile C programs ...
1
vote
2answers
331 views

Is there a binutils for llvm?

The LLVM compiler toolchain has a gcc that is compatible with normal gcc. The advantage of using llvm-gcc is that is goes to an arbitrary target, meaning normal gcc will say no such target when you ...
0
votes
2answers
74 views

Native toolchain issue on Macos 10.6.8 (Snow Leopard)

Below is the description of the issue. I marked it all as a code to avoid the implicit formatting that StackOverflow does. That is pretty annoying to have to deal with the Wiki-like markup language ...
0
votes
1answer
115 views

stack overflow when pass -pie flags to gcc

I'am trying to port fedora to mips cpu,some packages like "sudo" "krb5", following is the Makefile of "sudo" generated by configure which "-fpie" "-pie" flags was auto added. SUDO_LIBS = -laudit ...
0
votes
1answer
68 views

What's the “correct” way to determine target and architecture for GNU binutils?

In my build chain, I need to do this: objcopy -I binary -O $BFDNAME -B $BFDARCH <this> <that> in order to get a binary file into library form. Because I want other people to be able to ...
0
votes
2answers
108 views

gcc to tell a register compiled from which variable

I need to know from which variable is a register of a binary instruction in the obj file is compiled from. In short: the mapping from the register to variable for each instruction Example: suppose ...
0
votes
2answers
189 views

Setting earlier minimum kernel version when compiling static libraries

My distribution (Arch Linux) recently increased the minimum supported Linux kernel version for its toolchain. I am compiling a web application that I link statically and then upload to a web server, ...
0
votes
1answer
202 views

Clever uses of linker scripts?

A great comment on my answer describing how to use linker scripts to make a ctor-like function list pointed out that recent GNU ld has much improved support for grafting new sections into system ...
0
votes
2answers
670 views

Trying to no-op an instruction

Is it possible using GNU tools (gcc, binutils, etc) to modify all occurrences of an assembly instruction into a no-op? Specifically, gcc with the -pg option generates the following assembly (ARM): ...