从 Ubuntu 20 构建 Ubuntu 18 的应用程序
Build application for Ubuntu 18 from Ubuntu 20
我在 Ubuntu 20.04 OS 中使用 go build -o myApp
.
构建了我的 Go 应用程序
当我在 Ubuntu 服务器 18.04 上 运行 此应用程序时,出现此错误:
/lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found (required by ./myApp)
当我在 Whosebug 中搜索时,有人提到在服务器上安装 glibc 2.29
。但是有人回复说这种方式有风险,可能会断OS.
其他人建议使用 glibc 2.27
构建应用程序。
我该怎么做?
我在 Ubuntu 20.04 OS 中使用 go build -o myApp
.
当我在 Ubuntu 服务器 18.04 上 运行 此应用程序时,出现此错误:
/lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found (required by ./myApp)
当我在 Whosebug 中搜索时,有人提到在服务器上安装 glibc 2.29
。但是有人回复说这种方式有风险,可能会断OS.
其他人建议使用 glibc 2.27
构建应用程序。
我该怎么做?