golang CGO在跨平台交叉编译x86到arm64

1.编译环境配置

2.交叉编译工具链安装

具体可以查一下,g++

bash 复制代码
gcc
更新软件包列表:

bash
sudo apt update
安装 GCC 交叉编译器 (C语言):

bash
sudo apt install gcc-aarch64-linux-gnu

安装 G++ 交叉编译器 (C++语言):

bash
sudo apt install g++-aarch64-linux-gnu
bash 复制代码
cq@cq-desktop:~$ aarch64-linux-gnu-gcc --version
aarch64-linux-gnu-gcc (Ubuntu 11.4.0-1ubuntu1~22.04.3) 11.4.0
Copyright (C) 2021 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.

cq@cq-desktop:~$ aarch64-linux-gnu-g++ --version
aarch64-linux-gnu-g++ (Ubuntu 11.4.0-1ubuntu1~22.04.3) 11.4.0
Copyright (C) 2021 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.

3.头文件修改

进行系统判定,移除 Windows 特有的关键字;

go 复制代码
// Linux 兼容性:移除 Windows 特有的关键字
#ifdef __linux__
    #define __declspec(x)
    #define _stdcall
#endif

#ifndef DLLAPI_EX
#define DLLAPI  __declspec(dllexport)     // export DLL information
#else
#define DLLAPI  __declspec(dllimport)     // import DLL information
#endif

#ifdef __cplusplus
extern "C"
{
#endif

4,so文件修改正确

在so文件名前必须要加lib,必须保证为arm64架构
5.总结,交叉编译成功

我发现linux环境下会更加的严谨,一些细微的错误都能发现,这就是为什么Linux系统稳定的原因吧,比如程序中的大小写错误,win10环境下竟然没发现

相关推荐
何以解忧,唯有..10 天前
Go语言循环语句详解:for、range与循环控制
开发语言·算法·golang
踏着七彩祥云的小丑10 天前
Go学习第9天:并发编程 + 文件操作 + 正则表达式
学习·golang·正则表达式·go
JCGKS10 天前
Go `init` 函数:包初始化顺序到底是怎样的
golang·init·init执行顺序
何以解忧,唯有..11 天前
Go语言中的const:常量声明与iota枚举详解
java·开发语言·golang
geovindu11 天前
go: Reactor Pattern
开发语言·后端·设计模式·golang·反应器模式
記億揺晃着的那天11 天前
Java 调用外部 Go 程序的实践:ProcessBuilder 在生产环境中的应用
java·golang·processbuilder
jingling55511 天前
go | 环境安装和快速入门
开发语言·后端·golang
java_cj11 天前
从kubectl学Visitor模式:如何优雅处理多态数据结构的遍历
云原生·golang·k8s·访问者模式
何以解忧,唯有..12 天前
Go语言类型转换详解:从基础到进阶实践
开发语言·后端·golang
何以解忧,唯有..12 天前
Go 语言指针类型详解:从基础到实战
开发语言·后端·golang