dougu3290 2019-08-20 20:31
浏览 86
已采纳

从VSCode下载Golang库时出错

By running the following command in cmd or vscode:

go get -u -v github.com/mdempsky/gocode

I received the following console error:

crypto/internal/cipherhw
crypto/rc4
runtime
# crypto/rc4
c:\go\src\cryptoc4c4_asm.go:13:18: (*Cipher).XORKeyStream redeclared 
in this block
previous declaration at c:\go\src\cryptoc4c4.go:61:6

I have already checked the GOPATH, and GOROOT. I also uninstalled and installed go and VSCode again and was unsuccessful.

  • 写回答

1条回答 默认 最新

  • drk7700 2019-08-21 06:12
    关注

    This is a declaration error, if you inspect the error code you can fix it yourself.

    cryptoc4c4_asm.go:13:18: (*Cipher).XORKeyStream redeclared in this block

    previous declaration at c:\go\src\cryptoc4c4.go:61:6

    The first line states that (*Cipher).XORKeyStream was redeclared on line 13 of the file rc4_asm.go

    So if you inspect the rc4.go, file at line 61, you will find that (*Cipher).XORKeyStream has been defined more than once. Keep the definition you need, and go build again.

    I should note that one of the steps of go getting is a go build, so you don't have to worry about re-downloading again and again.

    I would try removing the download and trying again however, I managed to use that command and got an error free build.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何实验stm32主通道和互补通道独立输出
  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题