An open API service indexing awesome lists of open source software.

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

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
```