https://github.com/dentosal/static-elf-linker
A toy ELF linker for static binaries
https://github.com/dentosal/static-elf-linker
Last synced: 12 months ago
JSON representation
A toy ELF linker for static binaries
- Host: GitHub
- URL: https://github.com/dentosal/static-elf-linker
- Owner: Dentosal
- License: mit
- Created: 2023-03-01T21:36:30.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-03-01T21:36:49.000Z (over 3 years ago)
- Last Synced: 2025-01-26T06:24:50.494Z (over 1 year ago)
- Language: Rust
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Opinionated static elf64 linker
This is currently just a small toy project, and it's only able to do static linking of simple hand-written asm files at the moment.
## TODO:
* support .bss
* actually parse some of the linker args
* diagnostics
* string table
* output section table
* LTO
* dead code elemination at least
* tests
* fuzzing
* caching
* parallelism
* layout randomization
* deterministic mode
* "self-hosting"