如何在 64 位 Ubuntu 16 上安装 32 位 libcurl?

如何在 64 位 Ubuntu 16 上安装 32 位 libcurl?

我有一个 64 位库,可以运行,但无法安装 32 位版本。我无法使用 64 位二进制文​​件,因为我使用的所有其他静态库都是为 32 位系统编译的。 https://curl.haxx.se/libcurl/

答案1

我可以libcurl使用以下命令安装 32 位:

# enable i386 packages to be installed (may already be enabled)
dpkg --add-architecture i386
# update apt to fetch metadata for the new architecture
apt update
# install! (note: you may need a different version)
apt install libcurl4-openssl-dev:i386

i386这也带来了大约 35 个其他包。

相关内容