https://github.com/isutare412/cgo-dev
Example for cgo project using shared libraries as its dependencies
https://github.com/isutare412/cgo-dev
Last synced: 6 months ago
JSON representation
Example for cgo project using shared libraries as its dependencies
- Host: GitHub
- URL: https://github.com/isutare412/cgo-dev
- Owner: isutare412
- Created: 2021-12-03T06:55:38.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-03T09:32:36.000Z (about 4 years ago)
- Last Synced: 2025-05-28T07:44:37.641Z (7 months ago)
- Language: Makefile
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cgo-dev
An `cgo` example repostiory using C shared library as its dependency.
## Test
```bash
# Build C shared library
make rsum
# Build go executable that depends on rsum
make gosum
# Run the executable
make run
```