Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/gongluck/cghttp

封装go的http模块成C接口
https://github.com/gongluck/cghttp

c cgo go http

Last synced: 3 months ago
JSON representation

封装go的http模块成C接口

Awesome Lists containing this project

README

        

# cghttp
封装go的http模块成C接口

## windows动态库
```
go build -buildmode=c-shared -o http.dll
dlltool -dllname http.dll --def http.def --output-lib http.lib
```

## ~~windows静态库(无法使用)~~
```
go build -buildmode=c-archive -o http.lib
```