Displaying 4 results from an estimated 4 matches for "dyld_priv".
2012 Jan 14
3
[LLVMdev] Off Topic: Building ld
...ld ld from source to understand an assert(0).
>>
>> I got excited when I found that ld64 on the opensource portal contains an xcodeproj
>>
>> http://opensource.apple.com/source/ld64/ld64-127.2/
>>
>> But... it seems like I'm lacking mach-o/arm/reloc.h, and dyld_priv.h.
>>
>> I'm doing my best to stitch it all together, but if anyone has any pointers to make this less painful, it would be much obliged.
>
> Most of the stuff on opensource.apple.com is very painful to build. In this case you have to pick up reloc.h from
> the cctools ar...
2012 Jan 14
2
[LLVMdev] Off Topic: Building ld
I have a need to build ld from source to understand an assert(0).
I got excited when I found that ld64 on the opensource portal contains an xcodeproj
http://opensource.apple.com/source/ld64/ld64-127.2/
But... it seems like I'm lacking mach-o/arm/reloc.h, and dyld_priv.h.
I'm doing my best to stitch it all together, but if anyone has any pointers to make this less painful, it would be much obliged.
Humbly,
Joe Abbey
Director of S/W Development
Arxan Technologies, Inc.
1305 Cumberland Ave, Ste 215
West Lafayette, IN 47906
W: 765-889-4756 x2
C: 765-464-9893...
2012 Jan 14
0
[LLVMdev] Off Topic: Building ld
...gt; I have a need to build ld from source to understand an assert(0).
>
> I got excited when I found that ld64 on the opensource portal contains an xcodeproj
>
> http://opensource.apple.com/source/ld64/ld64-127.2/
>
> But... it seems like I'm lacking mach-o/arm/reloc.h, and dyld_priv.h.
>
> I'm doing my best to stitch it all together, but if anyone has any pointers to make this less painful, it would be much obliged.
Most of the stuff on opensource.apple.com is very painful to build. In this case you have to pick up reloc.h from
the cctools archive and dyld_priv.h f...
2012 Jan 15
0
[LLVMdev] Off Topic: Building ld
Ben,
Thanks for your help!
> http://opensource.apple.com/source/cctools/cctools-806/include/mach-o/arm/reloc.h
Yep, as Joe Ranieri pointed out, I had to tell MachOFileAbstraction.hpp about ARM relocs
> http://opensource.apple.com/source/dyld/dyld-195.5/include/mach-o/dyld_priv.h
I tried to use the dyld_priv.h from cctools to no avail, using the one from dyld (as you pointed out) worked
Also I had to "drag and drop" llvm-c/lto.h into the project, since no combination of Project/Target/Recursive Header Search paths to /home/jabbey/src/llvm/include seemed to do...