2 回答
TA贡献1852条经验 获得超7个赞
gopls
这是官方 golang 包中分发的工具中的一个错误。
问题报告中的信息:
internal/lsp: use Go/cgo source files instead of generated files
Using CompiledGoFiles was causing metadata lookups to fail for cgo
packages because it includes generated files in the Go build cache
when the built-in 'go list' driver is used. GoFiles includes both
Go and cgo original file names, allowing metadata lookups to
succeed.
TA贡献2016条经验 获得超9个赞
这是 VSCode 的一个错误,我已经为此问题写了一篇中等文章。
https://medium.com/@mourya.g9/setting-up-confluence-kafka-client-for-golang-with-vscode-7a27bb94220b。希望这可以帮助。
TA贡献1821条经验 获得超4个赞
问题是导入之间有额外的新行,您可以尝试以下操作:
// #cgo CFLAGS: -g -Wall
// #include <stdio.h>
// #include <stdlib.h>
// #include <string.h>
// #include "cutils.h"
import "C"
import (
"bufio"
"encoding/json"
// ...
)
- 2 回答
- 0 关注
- 197 浏览
添加回答
举报