Tagged Questions

The GNU binary utilities. A collection of tools for operating on object files. Most notably they include the GNU assembler and linker. They are typically used in conjunction with the GNU compiler collection (GCC).

learn more… | top users | synonyms

22
votes
7answers
768 views

How can adding a function call cause other symbols to become undefined when linking?

Hey Guys, I'm hoping someone will be able to help troubleshoot what I think is a linker script issue. I'm encountering a strange problem after adding a call to a new function. Without the function ...
8
votes
1answer
676 views

An objcopy equivalent for Mac / iPhone?

I would like to rename symbols inside object files (.o) with something that would be the Mac equivalent of binutils' objcopy --redefine-syms tool. I found no arm-apple-darwin10-objcopy. I tried the ...
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 ...
6
votes
5answers
2k views

readelf-like tool for Mac OS X?

Is there a tool for reading Mac OS X binaries that would print information about relocation tables and symbol offsets similar to this readelf output? readelf -r app Relocation section '.rel.dyn' at ...
5
votes
4answers
515 views

Patching code/symbols into a dynamic-linked ELF binary

Suppose I have an ELF binary that's dynamic linked, and I want to override/redirect certain library calls. I know I can do this with LD_PRELOAD, but I want a solution that's permanent in the binary, ...
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
97 views

Linux ELF files: Which byte will differ for static and dynamic ELF programs?

I'm working with linux elf files. I want to detect, if the given elf program is statically linked (full static link, ldd says "not a dynamic executable") or dynamically linked. The ELF is for ...
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 ...
4
votes
2answers
1k views

How do you extract only the contents of an ELF section

I've tried the following, but the resulting file is still an ELF and not purely the section content. $ objcopy --only-section=<name> <infile> <outfile> I just want the contents of ...
4
votes
2answers
793 views

linking a gas assembly file as a c program without using gcc

Hey, 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, ive taken it upon myself to attempt to program ...
3
votes
2answers
103 views

Is '.set noat' unsupported for MIPS assembly?

Currently, I'm learning GNU as, and find a lot useful information in "info as". I found ".set noat" is used in MIPS specified code, but when searching for this directive in "info as", I found its ...
3
votes
0answers
90 views

Adding to the *end* of the gnu ld library search paths

I know how to add to GNU ld's library search path using the -Ldir option and use it extensively. But as far as I can tell from reading the manuals of gcc and ld, there is no way to add to the end of ...
3
votes
1answer
540 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
1answer
367 views

Weird MIPS assembler behavior with jump (and link) instruction

So, we're studying MIPS architecture at school and we're implementing a MIPS32 architecture. I thought I'd use GNU cross-binutils as assembler but I'm getting weird output when dealing with ...
3
votes
2answers
812 views

objdump ELF and Windows

I am fairly new to this subject, that is ELF and any Linux related stuff. I am trying to write an ELF file and would prefer to do it on WinXP. My question is, can this be done with MS Visual Studio ...
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
38 views

Does GAS have anything that evaluates similar to NASM's $ token?

I just started down the Assembly road, and one of the first "Hello, World!" tutorials I found http://asm.sourceforge.net/intro/hello.html, gives a nice way of psudo-dynamicly getting the length of the ...
2
votes
0answers
78 views

MIPS, ELF and partial linking

I have a big software project with a complicated build process, which works like this: Compile individual source files. Partially link object files for each module together into another .o using ld ...
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
137 views

objdump and ARM vs Thumb

I'm trying to disassemble an object built for ARM with gcc. Unfortunately, objdump is trying to guess whether the code is ARM and Thumb, and is getting it wrong: it thinks my code is Thumb when it's ...
2
votes
2answers
242 views

Why does the -r option (relocatable) make ld not find any libraries?

Running Debian/Linux x86_64 with GNU ld 2.21. Quite simply, if I link with ld -o main main.o /usr/lib/crti.o /usr/lib/crt1.o /usr/lib/crtn.o -lc -lm It works, but when I link with ld -r -o ...
2
votes
1answer
226 views

Merge additional code into executable (arm-linux)

I'm trying to merge some extra logging code into a statically linked (android arm linux) executable. (Normal tracing methods don't seem to work, as it's a daemon process that clone()s just before ...
2
votes
1answer
352 views

Does binutils-gold has support for arm/Android?

I am trying to replace my default arm-eabi-ld with installed from binutils-gold ld, however during linking I have got (..../*.o) requires unsupported dynamic reloc; recompile with -fPIC ...
2
votes
1answer
486 views

Getting a full path from addr2line

I'm trying to automate some debugging tasks. In certain cases, I print the value of $ra [this is a MIPS machine] and parts of the stack as hex addresses. During debugging, I use addr2line to convert ...
2
votes
1answer
449 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
3answers
169 views

Given an ELF binary built from C++ with gcc, how can I determine the sizeof some type in it?

Is there some way using binutils tools to get this? For example: // x.cc typedef long long MyInt; int main(int argc, char* argv[]) { // blah blah blah } Then: g++ -g x.cc -o a.out How can I ...
2
votes
1answer
489 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 ...
2
votes
3answers
2k views

How to install gnu ld on mac os x 10.6?

I'm having a lot of trouble compiling the otherwise excellent Contiki OS on my macbook pro (with mac os x 10.6). Contiki actually uses a lot of GNU-specific features and options of GCC, AR, LD, and so ...
1
vote
1answer
125 views

Error while building binutils 2.21.1a on Solaris

I'm trying to build binutils 2.21.1a from http://ftp.gnu.org/gnu/binutils on Solaris sun4u sparc SunOS 5.10. I am using gcc version 4.0.2. When I built this is the error: cc1: warnings being treated ...
1
vote
2answers
38 views

gnu-binutils-strings utf-8 instead of utf-16 or ascii

I've noticed gnu-binutils-strings can printout utf-16 content in a file - is it possible for the program to print out utf-8 strings? if so, which arguments are appropriate? i'm working in a python ...
1
vote
3answers
74 views

How can I remove linked library from executable file

All. Someone created an executable file. # ldd test_bin libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0x4082d000) libA.so.0 => /usr/lib/libA.so.0 (0x408fe000) libB.so.0 => ...
1
vote
2answers
84 views

How to filter a lot of data with IPC::Open2?

My task is to filter some data from perl script with external utility (the addr2line). The data size is quite large. I need to print a lot of data to stdin of program and read a lot of data back ...
1
vote
1answer
45 views

ar command line length

I have an extremely long command line given to ar (android ar exactly) by bjam, and ar just corrupts a file path and complains that file does not exist. Is there a way to make ar allocate a bigger ...
1
vote
1answer
149 views

Injecting sections into GNU ld script; script compatibility between versions of binutils.

I'm building something like in the question How to collect data from different .a files into one array? How to keep sections in .a files with ld script?, i.e. arrays composed during link-time out of ...
1
vote
1answer
148 views

Error in binutils make for cross compilation

I am trying to compile binutils to set up GNU toolchain for cross compiling for ARM on linux x86 architecture. For this, I downloaded the GNU toolchain from : ...
1
vote
1answer
69 views

should we delete the build directories created in LFS for installing binutils-2.20?

I am in the part ( http://www.linuxfromscratch.org/lfs/view/6.6/chapter05/binutils-pass2.html) ( http://www.linuxfromscratch.org/lfs/view/6.6/chapter05/binutils-pass1.html) they ask ...
1
vote
1answer
365 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
1answer
135 views

autoconf check bfd library from binutils

on linux, autoconf 2.65, binutils 2.20.0. I need to do something like this: AC_CHECK_HEADER([bfd.h], [AC_DEFINE([HAVE_BFD_H])], [AC_MSG_WARN([Header "bfd.h" from ...
1
vote
2answers
330 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 ...
1
vote
2answers
517 views

How to get information from objdump

I encounter a problem when reading information dumped out from an executable file in linux. The information is as follows: 804a0ea: 04 08 add $0x8, %al ... 804a0f4: a6 ...
1
vote
0answers
364 views

How to reverse the objdump's strip with only-keep-debug?

In modern linux almost all objects are stripped and splitted in two parts. One - is executable itself and second is debug symbols, stripped out from original ELF. Such files are created with objcopy ...
1
vote
3answers
635 views

solaris elfedit: Is there something similar for linux ? (a shared library editor)?

Linux: It there a way to edit a compiled shared library ? specifically I am searching on how to add the DT_SYMBOLIC flag on an already compiled binary shared library? Here is why I am asking this: ...
1
vote
2answers
711 views

Is it possible to use MIPS register names with GAS (GNU assembler)?

If I use register names I get: Error: illegal operands `add $t0,$zero,$zero' If I use register number ($8 instead of $t0 and $0 instead of $zero) it works. (I'm using binutils 2.17).
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
2answers
42 views

gdb: how does it know the variable type and size?

I'm trying to figure this out as I'm trying to do the same thing (hopefully) with a home grown script: So say I have a simple C file: typedef struct _B { A aa; double b; char c[LEN]; ...
0
votes
1answer
115 views

Difference between nm and objdump

Looking at the manuals, objdump and nm have overlapping features. When would you use each one? What was the original purpose of each command?
0
votes
2answers
111 views

Building binutils with debugging mode

I'm trying to build binutils 2.21 source code with debugging on. My main aim is to debug objdump actually. But in order to build it I think I have to build whole package. Unfortunately there is no ...
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
0answers
65 views

Implement internal debug frame C , binutils

I have an interesting problem. Internal debug frame, for global variables. This frame should be able to give back the value of any global variable. I already found out how to get the pointers to them ...

1 2