上卷 程序设计
中卷 标准库
- bufio 1.18
- bytes 1.18
- io 1.18
- container 1.18
- encoding 1.18
- crypto 1.18
- hash 1.18
- index 1.18
- sort 1.18
- context 1.18
- database 1.18
- connection
- query
- queryrow
- exec
- prepare
- transaction
- scan & null
- context
- tcp
- udp
- http
- server
- handler
- client
- h2、tls
- url
- rpc
- exec
- signal
- embed 1.18
- plugin 1.18
- reflect 1.18
- runtime 1.18
- KeepAlived
- ReadMemStats
- SetFinalizer
- Stack
- sync 1.18
- atomic
- mutex
- rwmutex
- waitgroup
- cond
- once
- map
- pool
- copycheck
- nocopy
- unsafe 1.18
- fmt 1.18
- log 1.18
- math 1.18
- time 1.18
- timer
下卷 运行时
源码剖析
附录
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
11.2 CGO
在 Go 和 C 间相互调用,但是 CGO is not Go!
。除非必要,不建议使用!
- 编译慢,调试麻烦。
- 不支持交叉编译。
- 存在性能问题,以及内存泄漏风险。
- 需在 C 和 Go 栈间切换。
- 可能导致线程数量激增。
- 受
CGO_ENABLED
控制。
直接以注释方式将 C 代码嵌入到 Go 源文件内。
package main /* #include <stdio.h> void hello() { printf("hello, world!\n"); } */ import "C" // 注意!两者之间不同有空行。 func main() { C.hello() }
独立文件
单独保存在 .c
文件内,以 GCC/GDB
单独调试。
等 C 代码无误后,在 Go 内 #include
头文件。
// hello.h #ifndef __HELLO_H__ #define __HELLO_H__ void hello(); #endif
// hello.c #include <stdio.h> #include "hello.h" void hello() { printf("hello, world!\n"); } #ifdef __DEBUG__ int main() { hello(); return 0; } #endif
$ gcc -g -O0 -D__DEBUG__ -o hello hello.c $ ./hello hello, world!
包含头文件,编译器会自动编译(链接) .c
、 .s
、 .go
文件。
package main /* #include "hello.h" */ import "C" func main() { C.hello() }
动态链接
也可将 .c
编译成动态库( .so
),链接到 Go 程序。
$ mkdir ./lib # 避免在当前目录下被 go 编译器直接编译。 $ mv hello.* ./lib # 将 hello.h, hello.c 移动到子目录。 $ cd ./lib # 切换到子目录。 $ gcc -g -O0 -fPIC -shared -o libhello.so hello.c
package main /* #cgo CFLAGS: -I${SRCDIR}/lib #cgo LDFLAGS: -L${SRCDIR}/lib -lhello -Wl,-rpath=.:./lib #include "hello.h" */ import "C" func main() { C.hello() }
$ go build -o test $ ldd ./test libhello.so => ./lib/libhello.so (0x00007fc9fe587000)
静态链接
将 libc
链接到可执行文件内。
$ go build --ldflags '-extldflags "-static"'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论