可以在64位版本中使用旧版本软件吗?

huangapple go评论85阅读模式
英文:

Is it possible to use older version software in 64bit version

问题

我正在使用Windows7上的go version go1.19.2 windows/amd64,其他方面都运行得很好。

我正在尝试使用andlabs gui软件,但是我遇到了以下错误:

# github.com/andlabs/ui
cc1.exe: sorry, unimplemented: 64-bit mode not compiled in

我没有构建andlabs软件包;我只是在go mod initgo mod tidy命令之后使用了go build命令。我在我的源文件目录中的Windows终端中输入命令。

如何解决这个问题?

英文:

I am working with go version go1.19.2 windows/amd64 on Windows7 and it is otherwise working very well.

I am trying to use andlabs gui software but I am getting following error:

# github.com/andlabs/ui
cc1.exe: sorry, unimplemented: 64-bit mode not compiled in

I did not build the andlabs package; I just used go build command after go mod init and go mod tidy commands. I am giving commands on Windows terminal opened in my source file directory.

How can this problem be solved?

答案1

得分: 0

这通常意味着您在底层的C代码中安装了一个没有64位编译的C编译器。
如果您使用MSYS2安装,请确保打开了64位的终端窗口-由于某种原因,有3个不同的窗口可供选择...

英文:

This normally means you have a C compiler installed for the underlying C code which does not have 64bit compiled in.
If you installed using MSYS2 make sure you opened the 64bit terminal window - there are 3 different ones for some reason…

huangapple
  • 本文由 发表于 2022年10月22日 01:52:08
  • 转载请务必保留本文链接:https://go.coder-hub.com/74157493.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定