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).
1
vote
1answer
43 views
gnu ld/gdb: separate debug files. How to produce the debug file when there's too much debug info to link?
There's now gdb and binutils support for separating debug info from the binaries to be debugged. Docs describing this can be found in:
gdb: separate debug files
objcopy --add-gnu-debuglink, ...
1
vote
2answers
97 views
Script/Tool predicate for ARM ELF compiled for Thumb OR Arm
I have rootfs and klibc file systems. I am creating make rules and some developers have an older compiler without inter-networking.note1 I am trying to verify that all the files get built with arm ...
0
votes
0answers
26 views
ld: undefined symbol vs ld: undefined reference
What is the difference between these errors in GNU Binutils ld ?
undefined reference
undefined symbol
I have a good understanding of undefined reference: This occurs for example when the loader ...
0
votes
0answers
15 views
Why are there a binutils-versiona.tar.bz2 and a binutils-version.tar.bz2 and whats the difference? [closed]
Looking at the binutils ftp there are for each version also a version with an "a" after the version number. For example:
binutils-2.21.1.tar.bz2 26-Aug-2011 07:06 18997755
...
1
vote
0answers
36 views
how to determine object code size on Linux when “size” gives the wrong answer?
I want to know precisely how much object code is generated by GCC for each of a collection of compilation units, but I'm having an odd problem where the "size" command from binutils is not giving the ...
0
votes
2answers
75 views
libopcodes: get the size of a instruction
I have to find out the size of a instruction which I have in memory (actually, I have a small code segment in memory and want to get the size of the first instruction).
It took me some time to find ...
0
votes
1answer
87 views
Elegant way to set base address of ELF image with Linux binutils?
For a personal project, I need to write an executable that loads at a non-default memory address. From this SO question, I know I can set the entry address for an ELF and modify the section addresses ...
1
vote
1answer
83 views
Optimizing weak symbols lookup
If you ever tried to use the nm utility on any C++ program you have probably noticed that many symbols are identified as 'V' or 'W'. Both are different kind of weak symbols.
Now, having tons of weak ...
0
votes
1answer
62 views
Tool for Windows to view symbols in .so files
Is there a tool for Windows with which one could open an .so file and see which functions are inside it?
For Linux, there is binutils and objdump does that as well as other ways listed here How do I ...
0
votes
1answer
162 views
GCJ Linking Error: Says error: undefined reference to 'main' collect2: error: ld returned 1 exit status
The code is this:
public class Thingy
{
public static void main(String[] args)
{
System.out.println(Math.random());
}
}
So, absolutely NOT an unusual case, just a basic example.
When I ...
2
votes
0answers
78 views
How to prevent implicit linker script changing the LMA of a section
I'm using a modular build system for software than runs on an ARM embedded target as well as on a normal X86 (linux) machine. I'm compiling with a GNU toolchain, thus linking using ld.
One of the ...
1
vote
0answers
146 views
Configure Errors While Trying to Compile binutils
I'm trying to build a cross-compiler, but for some reason binutils is failing to compile. When I run make all, this is what I get after a while:
loading cache .././config.cache
checking whether ...
2
votes
3answers
186 views
Tutorial on building whole toolchain on CentOS
I am working on CentOS 6 machines, which has very old GCC/GlibC version. I want to build the whole glibc, binutils, gcc toolchain with latest or at least very recent versions in order to use c++11 ...
3
votes
1answer
185 views
gcc default options to ld?
Consider the hello world C program:
hello.c:
#include "stdio.h"
int main()
{
printf("Hello, World!\n");
}
If I call:
$ gcc -c hello.c -o hello.o
It will produce an ELF Relocatable File ...
1
vote
1answer
94 views
Change gcc/binutils --prefix
I once build and installed gcc and binutils with a wrong prefix (--prefix=/home/.../usr) passed to the configure script.
Now I reconfigured, rebuilt and reinstalled gcc and binutils with the right ...
0
votes
0answers
168 views
Permission error in Binutil while “make install”
I'm working on LFS7.2. I'm getting permission error while "make install" the binutil package, but I could successfully able to create folder in all the 3 dir (source,tools,usr) with the user lfs. I ...
0
votes
0answers
49 views
In gcc inline assembly, how to test version of binutils
I'm using some ARM inline assembler with GCC. I'm using a directive (.inst) but that isn't available in older binutils so I need to fall back to an alternative sequence. I could conditionalize my C ...
0
votes
1answer
53 views
Cygwin binutils configure Cached Incorrectly
I'm trying to install binutils in a Cygwin environment.
My path was very screwed up (e.g. one line of configure's output was:
"checking for ld... (cached) ...
1
vote
1answer
463 views
cross compiling, why “checking whether we are cross compiling… no”?
I'm trying to compile cross-platform tools-chain by myself.
When I compiled binutils-2.22, it success but why appear "checking whether we are cross compiling... no"? I suppose it should be "yes", ...
6
votes
1answer
142 views
Can I include/import a single function from a library in C++
I only need to use the iequals case-insensitive string comparison function from the BOOST library.
I am using #include <boost/algorithm/string.hpp> to import it.
Is there any way that I could ...
0
votes
1answer
60 views
Key mapping in GDB
Is it possible to define an arbitrary key combination to a command in GDB? I would like to know if there is something like the VIM map command. For example, I would like to map to next, to step, and ...
0
votes
1answer
97 views
Why binutils or gcc is installed in two locations?
I'm learning linux knowledges, when I compile binutils or gcc and install them, they always appear in two locations.
I think it must be a reason and I don't know why?
Actually I'm learning lfs. When ...
2
votes
2answers
232 views
How clear gdb command screen?
Is it possible to clear the command window of gdb? I mean, is there a command in gdb that do the same (for the command windows) as the clear command in a bash terminal?
1
vote
0answers
108 views
Running GCC and binutils on JVM
I was wondering whether the is a way to run GCC compiler suite and binutils on top of JVM so that the compiler would generate x86/ARM/MIPS binary as its output. This would be like crosscompiling, but ...
0
votes
0answers
82 views
where is llvm-gcc's plugin installed?
I'm new to llvm-gcc
I'm now using llvm-gcc 4.2, which I compiled from source, and "make install"ed to /usr/local/bin
I'v followed this link:http://llvm.org/docs/GoldPlugin.html
compiled LLVMgold.so ...
1
vote
1answer
711 views
What is __gmon_start__ symbol?
I'm compiling this code with gcc hello.c -o hello -O3
#include <stdio.h>
int main(void) {
printf("Hello world\n");
return 0;
}
when I list the relocations I get:
test@southpark$ ...
3
votes
0answers
223 views
References to FFTW not resolved when linking with --as-needed
I have a linking problem which I cannot explain. The program contains references to FFTW functions in a file called fft.cpp. The linking command is as follows (I skipped the rest of object files):
...
1
vote
2answers
110 views
ELF Relocation - where came from these symbols?
In my Debian x86 32 Bits, when I do readelf -r /usr/lib/libstdc++.so.6 | grep pthread, I get this output:
000eceac 00006206 R_386_GLOB_DAT 00000000 pthread_cancel
000ed058 00000807 ...
3
votes
2answers
189 views
ELF Dynamic loader symbol lookup ordering
What is the search order for symbol lookup when resolving dynamic relocations?
When resolving symbols for a shared library does the loader first search in the 'main executable' (to let the main ...
0
votes
0answers
59 views
Dynamic Loader Relocations
What the dynamic loader for Linux x86 32 bits does when it encounters the following types of relocation: 1) R_386_COPY; 2) R_386_GLOB_DAT and 3) R_386_JMP_SLOT ?
The ELF Specification (with Intel ...
2
votes
1answer
442 views
GCC What's the right inline assembly constraint to operate with ARM VFP instructions?
I want to load the value of a double precision register (d8) into a C variable on ARM platform with a toolchain (gcc-4.6) that comes with the Google NDKv8b. My ARM machine is a Samsung Galaxy S2 (it ...
1
vote
1answer
147 views
Using Binutils Build on Solaris 10 Fails
I have successfully built and installed latest binutils-2.22 on Solaris 10.
But when I try to use the installed programs such as ld and or I get a run-time error:
ld.so.1: ld: fatal: relocation ...
3
votes
1answer
784 views
binutils/bfd.h wants config.h now?
I'm trying to use the BFD library, and so I've installed package binutils-dev and have included:
#include <bfd.h>
and am calling bfd_openr and bfd_close and so on from my code.
Recently I ...
2
votes
1answer
293 views
Objcopy, how it makes binary output?
As I'm new to binutils, gcc ant others, I have some general questions, anwsers on which I havn't found in manuals.
I'm using C and assembly(nasm syntax) and I need raw binary files on output. First ...
13
votes
2answers
1k views
Wrong line numbers from addr2line
I try to find the exact line of a call in the backtrace in C++ program. Right now I am using these lines (from the man page of backtrace) to get the trace:
void *bt_buffer[1000];
char ...
3
votes
1answer
2k views
How to use/intall GNU binutils (objdump)
I need to use the objdump and readelf commands in my application that runs on windows. I know I can install cygwin in order to use them. The reason why I don't want to use cygwin is because I want to ...
2
votes
2answers
232 views
GNU as weirdness for jmp with global label
I would like to understand the following behavior of GNU as.
The following test program on OS X (Apple cctools-822/GNU as 1.38)
.globl foo
jmp foo
foo:
ret
is encoded to
00000000 ...
0
votes
0answers
61 views
What does the # symbol represent in objdump output?
The following is typically part of the output of objdump when used with the -Dslx flags:
00000000004003c0 <__libc_start_main@plt-0x10>:
4003c0: ff 35 2a 0c 20 00 pushq ...
1
vote
1answer
584 views
Arch Linux doesn't have i586-elf-gcc or i586-elf-gcc
I'm attempting to create a C kernel initially following this tutorial: http://wiki.osdev.org/Bare_Bones
However, my system doesn't have i586-elf-gcc or i586-elf-ld. I'm really not sure where I can ...
0
votes
1answer
128 views
i386-pc-mingw32-objdump pe disassembling aborted
I am trying to disassemble Sid Meiers Railroads 1.1 original binary from 1C disc
file RailRoads.exe
>>PE32 executable (GUI) Intel 80386, for MS Windows
sudo crossdev i386-pc-mingw32
...
0
votes
1answer
88 views
How do I find which version of gcc corressponds to which version of binutils?
Exactly as the question sounds.
If there isn't a generic way to answer this question for any given version pair, can someone at least answer the specific question of whether gcc 3.4.6 and ld ...
1
vote
1answer
384 views
Binutils stat illegal option -c
I use stat two times in my script once to find the file files permissions and once to find the size of the file.
`stat -c %A "$directory/$file"`
`stat -c %s "$directory/$file"`
I am using OSX ...
0
votes
1answer
42 views
Tool to work in the network layer
I have recently been using telnet a lot recently to test out many different types of tcp connections, (basic TCP, standard HTTP, Bayeux through HTTP, etc) as a means to learn how things work.
I want ...
10
votes
4answers
559 views
Is there an option to GNU ld to omit -dynamic-linker (PT_INTERP) completely?
I'm experimenting with the concept of pure-static-linked PIE executables on Linux, but running into the problem that the GNU binutils linker insists on adding a PT_INTERP header to the output binary ...
0
votes
1answer
141 views
Is there a way to unhide hidden-visibility symbols with GNU binutils?
I'm working on a script to make uClibc usable on an existing glibc-targetted gcc/binutils toolchain, and the one problem I'm left with is that pthread_cancel needs to dlopen libgcc_s.so.1. The version ...
0
votes
0answers
99 views
binutils: hex2asm
I get stack dump from android's logcat and it shows code around pc like that:
I/DEBUG ( 1006): code around pc:
I/DEBUG ( 1006): 825b11b8 e1cd66d8 e59de070 e046a007 e3caa00f
I/DEBUG ( 1006): ...
6
votes
4answers
4k views
How to list library dependencies of a non-native binary?
When developing for native platform, I can use ldd to list all the shared libraries (.so files) a binary executable I build will try to load upon start-up. But when cross-compiling, I don't know how ...
2
votes
1answer
164 views
Ruby grep binary files?
I have been using this so far
system 'strings binary-file.dmp | grep search_string'
Is there something more "Ruby like"?
4
votes
1answer
696 views
Why does arm-none-eabi-size report the .data section to be 0 even though I am using initialized RAM?
I am a bit confused by the results I am getting when I use my toolchain's (Yagarto and codesourcery) size utility. it is reporting that I am using 0 bytes in the data section. see below
$ ...
0
votes
1answer
85 views
How to specify a value for a #define with autoconf?
I'm trying to build Gnu binutils with behaviour unlocked by defining the macro SYSV386_COMPAT 0 to vary the way in which it generates some FPU opcodes.
I can easily go into the header file and set ...
