https://github.com/deepflowio/libgoresym
https://github.com/deepflowio/libgoresym
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/deepflowio/libgoresym
- Owner: deepflowio
- Created: 2022-09-15T02:40:49.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-09-19T08:21:06.000Z (almost 4 years ago)
- Last Synced: 2025-03-26T11:44:45.505Z (over 1 year ago)
- Language: Go
- Size: 4.68 MB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# libGoReSym
C wrapper for [GoReSym](https://github.com/mandiant/GoReSym)
## BUILD
### GCC
```bash
make gcc-build
make install
make clean
```
### musl
Your Go needs this [Patch](https://go-review.googlesource.com/c/go/+/334991/).
Go relies on the feature of glibc, which does not belong to the C language standard. And musl does not implement this feature, so it is necessary to patch the go language to fix this error. This patch itself also has some problems, which will cause some go functions to be abnormal, but Does not affect this library.
```bash
make musl-build
make install
make clean
```