python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Writing and linking shared libraries in assembly 32-bit
I am currently learning assembler for x86 with att syntax. Over the past time I have already written exercise programs without dependencies. Now I wanted to try writing a shared shared-library, as thi...
Cediwelli
Votes: 0
Answers: 1
cannot find Scrt.o and crti.o
I am trying to compile my assembly code
global main
extern printf
section .data
msg db "Testing %i...", 0x0a, 0x00
section .text
main:
push ebp
mov ebp, esp
push 123
pu...
user16665136
Votes: 0
Answers: 0
Custom ld-linux.so for subprocesses
I am running a program with a set of custom libraries as follows:
/path/to/my/ld-linux-x86-64.so.2 --library-path /path/to/my/libs /path/to/my/executable
This works great for most of the programs I a...
Ian
Votes: 0
Answers: 1
Compiling old C code Y2038 conform still results in 4 byte variables
According to this overview in order to compile Y2038 conform old code, we just need to add the preprocessor macro __USE_TIME_BITS64 to gcc, but that does not seem to work on an ARMv7 board with Debian...
JohnnyFromBF
Votes: 0
Answers: 1