Re: dyld missing file for compilation
Re: dyld missing file for compilation
- Subject: Re: dyld missing file for compilation
- From: Jean-Daniel Dupas <email@hidden>
- Date: Thu, 14 Mar 2013 14:49:48 +0100
Le 14 mars 2013 à 13:37, Nat! <email@hidden> 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 (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden