Golang을 dll로 패키징할 수 있나요?
Golang은 프로그램을 DLL 파일로 컴파일할 수 있습니다.
1. Golang은 dll을 컴파일하는 과정에서 gcc를 사용해야 합니다. 먼저 MinGW를 설치하세요.
Windows 64비트 시스템은 MinGW의 64비트 버전을 다운로드해야 합니다: https://sourceforge.net/projects/mingw-w64/
2 다운로드 후 mingw-w64-install.exe를 실행하여 설치를 완료합니다. MingGW의.
(권장 학습: 웹사이트 구축 튜토리얼)
3. 먼저 golang 프로그램인exportgo.go를 작성하세요:
package main import "C" import "fmt" //export PrintBye func PrintBye() { fmt.Println("From DLL: Bye!") } //export Sum func Sum(a int, b int) int { return a + b; } func main() { // Need a main function to make CGO compile package as C shared library }
4. DLL 파일로 컴파일하세요. 및
exportgo.h 두 개의 파일. 5.exportgo.h 파일의 함수 정의를 참조하여 C# 파일 importgo.cs를 작성합니다. go build -buildmode=c-shared -o exportgo.dll exportgo.go
CS 파일을 컴파일하여 exe를 얻습니다.
using System; using System.Runtime.InteropServices; namespace HelloWorld { class Hello { [DllImport("exportgo.dll", EntryPoint="PrintBye")] static extern void PrintBye(); [DllImport("exportgo.dll", EntryPoint="Sum")] static extern int Sum(int a, int b); static void Main() { Console.WriteLine("Hello World!"); PrintBye(); Console.WriteLine(Sum(33, 22)); }
exe와 dll을 같은 디렉터리에 넣고 실행합니다.
csc importgo.cs
더 많은 golang 지식을 알고 싶다면 PHP 중국어 웹사이트의
golang tutorial칼럼을 주목해주세요.
위 내용은 Golang을 dll로 패키징할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!