2016-10-04 4 views
1

현재 Go 프로젝트에 C 코드를 추가하려고합니다. 공상 아무것도Cgo : 미완성, 구현되지 않음 : 64 비트 모드가 컴파일되지 않았습니다.

/* 
#include <stdio.h> 
void test() { 
    printf("hooola") 
} 
*/ 

import (
    "C" 
) 

func MessageBox() { 
    C.test() 
} 

그러나이

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) 

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. 

모두 설치 내 문제가 어디에서 오는 확실하지 않다, 그래서 mingw64bits를 사용하고 계십니까?

+0

'gcc -v'의 결과'gcc' 버전이'g ++'에 비해 너무 오래 걸린 것 같습니다. 아마 당신은 여러 개의'gcc' 설치가있을 것입니다. – putu

답변

5

1 짧은 답변 :
나는, 64 비트 과부 OS에서 모두 32 비트 및 64 비트 go build에 대한 유일한 작업 버전 당신은 C:\TDM-GCC-64\에 설치하고 PATH (상단에 C:\TDM-GCC-64\bin을 추가 할 수 있습니다 tdm64-gcc-5.1.0-2.exe
입니다 많은 버전을 시도 = 또는 왼쪽).


2 - 당신은 MinGW-w64 - for 32 and 64 bit Windows 또는 x64-4.8.1-release-posix-seh-rev5을 시도 할 수 있습니다.
이 버전은 64 비트 빌드 (64 비트 OS에서는 32 비트 대상 아님)에서만 잘 작동합니다. 윈도우 OS에 대한


3

은 명령 프롬프트를 실행합니다 cmd (리눅스 터미널은) 다음 (리눅스에서 whereis gcc)이 명령을 실행

여러 GCC 경로는 다음이 있다면 그런
where gcc 

당신 이 순서를 편집하고 필요한 항목을 맨 위에 놓거나 다른 항목을 모두 제거 할 수 있습니다.


3- 참조 :

Differences between Mingw-w64 and TDM-GCC for a simple GDI project

What is the difference between Orwell's MinGW and TDM Dev-C++ versions?


도움이 되었기를 바랍니다.