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)
Global variable symbols is incorrect when I debug a unix-like kernel wrote by myself
code is here at commit #489ee1c
I am writing a unix-like kernel following this tutorial for personal learning. Global variable symbols is incorrect when I debug a unix-like kernel wrote by myself.
I ...
philquinn
Votes: 0
Answers: 0
Is it possible to auto split the .text section across mulitple memory areas?
I am currently writting a embedded program for a microcontroller with a splitted flash region. Something like
MEMORY {
flash1 : ORIGIN = 0x1000, LENGTH = 0x1000
/* 1K gap */
flash2 : OR...
Schafwolle
Votes: 0
Answers: 1
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
dlmopen namespaces for subplugins that look for global symbols?
I have two+ libs that are symbol-incompatible (libA, libB) so I load them into RTLD_LOCAL namespaces. However, each one can possibly load other libs that seem to look in global namespace for the resol...
GGibson
Votes: 0
Answers: 1