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
1answer
371 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 ...
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 ...
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
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 ...