Tagged Questions
2
votes
1answer
133 views
Uncaught exception - debuging techniques (C++)
I have encountered a curious scenario in which the following unlikely code:
try{
throw Core::ValueError();
}
catch (Core::Error &e){
...
}
(ValueError inherits from Error inherits from ...
1
vote
1answer
164 views
Apple Mach-O linker (ld) error using freenect library
When trying to compile the following file in xcode:
http://openkinect.org/wiki/C%2B%2BOpenCvExample
I get these errors:
Ld build/Debug/KinectOpenCV normal x86_64
cd ...
1
vote
1answer
83 views
Get __TEXT and __DATA Dyld address mapping from within an executable
To find the dyld address mapping of __TEXT and __DATA for my mach-o executable I set the environment variable DYLD_PRINT_SEGMENTS=1. This logs on the console where in memory the executable is mapped.
...
1
vote
4answers
698 views
Parser for 32-bit and 64-bit Mach-O binary/executable formats in C++
I'm looking for a C++ library that can parse 32-bit and 64-bit Mach-O binary format. I don't need anything fancy, just a disassembly and splitting the file into its sections, so no decompilation, name ...
0
votes
1answer
105 views
Xcode 4 mach-o error
I coded an OSX application (not for iphone) on top of another, changed the name properly (I was even asked if I wanted to rename all instances of the original name, and did). It compiles perfectly ...