我目前正在尝试在Go项目中添加一些C代码.没有什么花哨
/*
#include <stdio.h>
void test() {
printf("hooola")
}
*/
import (
"C"
)
func MessageBox() {
C.test()
}
Run Code Online (Sandbox Code Playgroud)
然而,这将返回
cc1.exe:抱歉,未实现:64位模式未编译
我检查了我g++和gcc编译器,一切似乎都很好,g++ -v返回此
C:\Users\ragga>g++ -v
Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=C:/Program\ Files/mingw-w64/x86_64-6.2.0-posix-seh-rt_v5-rev1/mingw64/bin/../libexec/gcc/x86_64-w64-mingw32/6.2.0/lto-wrapper.exe
Target: x86_64-w64-mingw32
Configured with: ../../../src/gcc-6.2.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw620/x86_64-620-posix-seh-rt_v5-rev1/mingw64 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-isl-version-check --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/mingw620/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw620/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw620/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw620/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev1, Built by MinGW-W64 project' --with-bugurl=http://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -I/c/mingw620/x86_64-620-posix-seh-rt_v5-rev1/mingw64/opt/include -I/c/mingw620/prerequisites/x86_64-zlib-static/include -I/c/mingw620/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -I/c/mingw620/x86_64-620-posix-seh-rt_v5-rev1/mingw64/opt/include -I/c/mingw620/prerequisites/x86_64-zlib-static/include -I/c/mingw620/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS= LDFLAGS='-pipe -L/c/mingw620/x86_64-620-posix-seh-rt_v5-rev1/mingw64/opt/lib -L/c/mingw620/prerequisites/x86_64-zlib-static/lib -L/c/mingw620/prerequisites/x86_64-w64-mingw32-static/lib '
Thread model: posix
gcc version 6.2.0 (x86_64-posix-seh-rev1, Built by MinGW-W64 project)
Run Code Online (Sandbox Code Playgroud)
虽然gcc --version归还了这个
g:\Workspace\Go\src\github.com\raggaer\snak>gcc --version
gcc (GCC) 4.8.1
Copyright (C) 2013 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Run Code Online (Sandbox Code Playgroud)
两者都使用mingw64bits安装,所以我不确定我的问题来自哪里?
小智 18
1-简答:
我尝试了很多版本,go build64位Widows OS中32bit和64bit的唯一工作版本是
你可以安装它并添加到你的 (在顶部=或左侧).tdm64-gcc-5.1.0-2.exeC:\TDM-GCC-64\C:\TDM-GCC-64\binPATH
2-您可以尝试使用MinGW-w64 - 32位和64位Windows
或x64-4.8.1-release-posix-seh-rev5.
此版本仅适用于64位版本(64位操作系统上不是32位目标).
3-对于Windows操作系统,运行命令提示符:( cmdLinux中的终端)然后运行此命令(whereis gcc在Linux中):
where gcc
Run Code Online (Sandbox Code Playgroud)
然后,如果有多个gcc路径,那么您可以编辑这些路径的顺序,并将您需要的路径放在顶部或删除所有其他路径.
4-见:
Mingw-w64和TDM-GCC之间在简单GDI项目上的差异
Orwell的MinGW和TDM Dev-C++版本有什么区别?
我希望这有帮助.