Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/realharley91/macho-hello
https://github.com/realharley91/macho-hello
Last synced: 26 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/realharley91/macho-hello
- Owner: realharley91
- Created: 2024-06-18T10:39:19.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-06-20T11:11:21.000Z (8 months ago)
- Last Synced: 2024-12-02T09:29:40.549Z (2 months ago)
- Language: C
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mach-O Hello
This is my attempt at trying to understand Mach-O file format.
`gen.c` includes a file that generates a linkable Mach-O object file.
It is a "Hello World" program.```sh
make # generates `./hello`
./hello # prints "Hello, World!" and halts
```I can confidently say that I understand the Mach-O file format now.
But damn it is low-key hard to work with.