q/src/macho/DylinkerCommand.go
Eduard Urbach e3444b3626
All checks were successful
/ test (push) Successful in 17s
Updated Mach-O format to use LC_MAIN
2025-07-08 19:17:48 +02:00

13 lines
No EOL
260 B
Go

package macho
const (
DylinkerCommandSize = 12
LinkerString = "/usr/lib/dyld\000\000\000\000\000\000\000"
)
// DylinkerCommand is needed if the program uses a dynamic linker.
type DylinkerCommand struct {
LoadCommand
Length uint32
Name uint32
}