Tagged Questions
3
votes
2answers
104 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
2answers
816 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 ...
1
vote
1answer
128 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
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
713 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
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
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 ...