https://github.com/marv7000/solink
Shared Object Linker
https://github.com/marv7000/solink
c linker linux shared-library shared-object x86-64
Last synced: 12 months ago
JSON representation
Shared Object Linker
- Host: GitHub
- URL: https://github.com/marv7000/solink
- Owner: marv7000
- License: bsd-3-clause
- Created: 2024-02-27T19:34:53.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-05-23T01:03:50.000Z (almost 2 years ago)
- Last Synced: 2024-05-23T02:24:09.094Z (almost 2 years ago)
- Topics: c, linker, linux, shared-library, shared-object, x86-64
- Language: C
- Homepage:
- Size: 87.9 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
> ### Disclaimer
> `solink` is currently still in development and doesn't produce working binaries yet.
### About
`solink` reads ELF binaries and attempts to satisfy external references by
reading provided shared objects and patching the binary.
A common use case for this tool is for users without access to the
source code of an application needing a portable executable without external
references.
### Usage
```
solink [Path to shared object(s)] [Path to target]
```
All flags are optional, but there has to be at least one shared object.
The last argument is always the executable to be linked to.
If no arguments are provided, `solink` will output a help text (equivalent to
`solink --help`).
> **_Warning:_**
> It's highly discouraged to link against system libraries (such as `glibc`).
> While this works, it can have unwanted side effects or cause programs to
> crash.
Example:
```sh
solink -o my_patched_app libs/my_lib1.so libs/my_lib2.so my_app
```
### Flags
For a list of flags and options, see the [documentation](docs/flags.md).
### Building
```sh
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
cmake --build .
```
### Contributing
All contributions are welcome! Please feel free to get in touch if you're having
any issues or have a feature to suggest.