Le 14 mars 2013 à 13:37, Nat! <nat@mulle-kybernetik.com> a écrit :
Hi
I wanted to compile dyld. But there is a file missing named coreSymbolicationDyldSupport.hpp. If I don't find a file in the package I usually try the xnu package (and google :) but nothing shows up.
dyld.cpp has an #if around the #include
#if CORESYMBOLICATION_SUPPORT #include "coreSymbolicationDyldSupport.hpp" #endif
but ImageLoader.h turns it on pretty much unconditionally:
#if __IPHONE_OS_VERSION_MIN_REQUIRED #define CORESYMBOLICATION_SUPPORT 1 #else #define CORESYMBOLICATION_SUPPORT (__i386__ || __x86_64__) #endif
Or should I use ppc ? :D
Ciao Nat!
AFAIK, this is an internal header used by the CoreSymbolication private framework to install dyld hooks to get notifications about image loading/unloading. You can try to define CORESYMBOLICATION_SUPPORT to 0 to compile dyld without it. -- Jean-Daniel _______________________________________________ Do not post admin requests to the list. They will be ignored. Darwin-dev mailing list (Darwin-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/darwin-dev/site_archiver%40lists.app... This email sent to site_archiver@lists.apple.com