1# Supplies a weak def of ExtraDef, and a pointer holding its address, 2# ExtraDefInExtraFile. 3 4 .section __TEXT,__text,regular,pure_instructions 5 .build_version macos, 10, 14 sdk_version 10, 14 6 .section __DATA,__data 7 .globl ExtraDef 8 .weak_definition ExtraDef 9 .p2align 2 10ExtraDef: 11 .long 2 12 13 .globl ExtraDefAddrInExtraFile 14 .p2align 3 15ExtraDefAddrInExtraFile: 16 .quad ExtraDef 17 18 19.subsections_via_symbols 20