Support universal Mach-O binaries with a fat64 header. After
4d683f7fa7, dsymutil can now generate such binaries when the offsets
would otherwise overflow the 32-bit offsets in the regular fat header.
rdar://107289570
Differential revision: https://reviews.llvm.org/D147012
6 lines
95 B
C
6 lines
95 B
C
#include <stdio.h>
|
|
|
|
int foo() { return 0; }
|
|
|
|
int main(int argc, char **argv) { return foo(); }
|