| ... | ... | @@ -575,6 +575,7 @@ const usage_build_generic = |
| 575 | 575 | \\ 0x[hexstring] Maximum 32 bytes |
| 576 | 576 | \\ none (default) Disable build-id |
| 577 | 577 | \\ --eh-frame-hdr Enable C++ exception handling by passing --eh-frame-hdr to linker |
| 578 | \\ --no-eh-frame-hdr Disable C++ exception handling by passing --no-eh-frame-hdr to linker |
| 578 | 579 | \\ --emit-relocs Enable output of relocation sections for post build tools |
| 579 | 580 | \\ -z [arg] Set linker extension flags |
| 580 | 581 | \\ nodelete Indicate that the object cannot be deleted from a process |
| ... | ... | @@ -1582,6 +1583,8 @@ fn buildOutputType( |
| 1582 | 1583 | fatal("unable to parse '{s}': {s}", .{ arg, @errorName(err) }); |
| 1583 | 1584 | } else if (mem.eql(u8, arg, "--eh-frame-hdr")) { |
| 1584 | 1585 | link_eh_frame_hdr = true; |
| 1586 | } else if (mem.eql(u8, arg, "--no-eh-frame-hdr")) { |
| 1587 | link_eh_frame_hdr = false; |
| 1585 | 1588 | } else if (mem.eql(u8, arg, "--dynamicbase")) { |
| 1586 | 1589 | linker_dynamicbase = true; |
| 1587 | 1590 | } else if (mem.eql(u8, arg, "--no-dynamicbase")) { |