溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

Golang編譯成DLL文件的方法

發(fā)布時(shí)間:2021-01-05 11:25:20 來(lái)源:億速云 閱讀:1053 作者:小新 欄目:編程語(yǔ)言

這篇文章主要介紹了Golang編譯成DLL文件的方法,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

golang 編譯 dll 過(guò)程中需要用到 gcc,所以先安裝 MinGW。

windows 64 位系統(tǒng)應(yīng)下載 MinGW 的 64 位版本: https://sourceforge.net/projects/mingw-w64/

下載后運(yùn)行 mingw-w64-install.exe,完成 MingGW 的安裝。

首先撰寫(xiě) 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
}

編譯成 DLL 文件:

go build -buildmode=c-shared -o exportgo.dll exportgo.go

編譯后得到 exportgo.dll 和 exportgo.h 兩個(gè)文件。

參考 exportgo.h 文件中的函數(shù)定義,撰寫(xiě) C# 文件 importgo.cs:

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));
        }

編譯 CS 文件得到 exe

csc importgo.cs

將 exe 和 dll 放在同一目錄下,運(yùn)行。

>importgo.exe

Hello World!
From DLL: Bye!
55

golang 中的 string 參數(shù)在 C# 中可以如下引用:

public struct GoString
    {
        public string Value { get; set; }
        public int Length { get; set; }

        public static implicit operator GoString(string s)
        {
            return new GoString() { Value = s, Length = s.Length };
        }

        public static implicit operator string(GoString s) => s.Value;
    }
// func.go
package main

import "C"
import "fmt"

//export Add
func Add(a C.int, b C.int) C.int {
	return a + b
}

//export Print
func Print(s *C.char) {  
/* 
函數(shù)參數(shù)可以用 string, 但是用*C.char更通用一些。
由于string的數(shù)據(jù)結(jié)構(gòu),是可以被其它go程序調(diào)用的,
但其它語(yǔ)言(如 python)就不行了
*/
	print("Hello ", C.GoString(s)) //這里不能用fmt包,會(huì)報(bào)錯(cuò),調(diào)了很久...
}
func main() {	
}                                                                                                                                        

編譯

go build -ldflags "-s -w" -buildmode=c-shared -o func.dll func.go
還是有點(diǎn)大的,880KB,純C 編譯的只有48KB,應(yīng)該是沒(méi)有包含全部的依賴(lài)吧,go是全包進(jìn)來(lái)了

Go 調(diào)用

package main
import (
	"fmt"
	"syscall"
)

func main() {
	dll := syscall.NewLazyDLL("func.dll")
	add := dll.NewProc("Add")
	prt := dll.NewProc("Print")
	r, err, msg := add.Call(32, 44)
	fmt.Println(r)
	fmt.Println(err)
	fmt.Println(msg)
	
	name := C.CString("Andy")
	prt.Call(uintptr(unsafe.Pointer(name)))
}
out:
76
0
The operation completed successfully.
Hello Andy

Python 調(diào)用

from ctypes import CDLL, c_char_p
dll = CDLL("func.dll")
dll.Add(32, 33)
dll.Print(c_char_p(bytes("Andy", "utf8")))

C++調(diào)用

#include <iostream>
#include <windows.h>

using namespace std;
typedef int(*pAdd)(int a, int b);
typedef void(*pPrt)(char* s);

int main(int argc, char *argv[])
{
    HMODULE dll= LoadLibraryA("func.dll");
    pAdd add = (pAdd)GetProcAddress(dll, "Add");
    pPrt prt = (pPrt)GetProcAddress(dll, "Print");
    cout << add(321, 33) << endl;
    prt("Andy");
    FreeLibrary(dll);
    return 0;
}

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“Golang編譯成DLL文件的方法”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI