mirror of
https://github.com/darlinghq/darling-dyld.git
synced 2024-11-23 04:19:41 +00:00
Add Constructor For MachOAnalyzerSet
Works around a linkage issue.
This commit is contained in:
parent
4026198db8
commit
8450bb533f
@ -49,6 +49,10 @@ static bool hasHigh8(uint64_t addend)
|
||||
return ( (addend >> 48) != 0xFFFF );
|
||||
}
|
||||
|
||||
#ifdef DARLING
|
||||
MachOAnalyzerSet::MachOAnalyzerSet() {}
|
||||
#endif
|
||||
|
||||
void MachOAnalyzerSet::WrappedMachO::forEachBind(Diagnostics& diag, FixUpHandler fixUpHandler, CachePatchHandler patchHandler) const
|
||||
{
|
||||
const bool is64 = _mh->is64();
|
||||
|
@ -107,6 +107,9 @@ namespace dyld3 {
|
||||
struct VIS_HIDDEN MachOAnalyzerSet
|
||||
{
|
||||
public:
|
||||
#ifdef DARLING
|
||||
MachOAnalyzerSet();
|
||||
#endif
|
||||
struct FixupTarget;
|
||||
|
||||
struct ExportsTrie { const uint8_t* start; const uint8_t* end; } ;
|
||||
|
Loading…
Reference in New Issue
Block a user