python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
"Compiling" go project as C shared object library on AIX 7.2 results in Executable that doesn't run
EDIT: For any poor soul that finds this, in search of a solution for the shared library from go conundrum: I was unable to find a solution that uses go and I would suggest, that until google go provid...
knmiecc
Votes: 0
Answers: 1
Are Mach-O Lazy Symbol Pointer addresses masked?
I am looking through a PowerPC Mach-O executable in different programs, and I noticed something strange. For symbols that are to stubbed functions, XMachOViewer and any normal hex viewing of the file ...
ChrisNonyminus
Votes: 0
Answers: 1
clock_gettime(CLOCK_MONOTONIC_RAW,...) seems to cause the user space to freeze for about 5-6 minutes
I have an embedded systems running linux 2.6.30 on a powerpc CPU (Freescale MPC5125). After writing new code for this device, I suddenly observed user space hangs for about 5-6 minutes.
It turned out,...

Mario Klebsch
Votes: 0
Answers: 0
clang fails to parse the LR register from PowerPC
code:
.globl main
main:
mfspr 0, lr
the clang internal assembler thinks lr is a symbol, not a register:
$ clang --target=ppc32 regs.s -c; nm regs.o
U lr
00000000 T main
anyone knows what'...
Laurenţiu Terţan
Votes: 0
Answers: 1