英文:
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 init
和go 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…
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论