我尝试用 32 位编译软件libc
,老到足以与我的客户兼容。
所以我在最后几天(在弃用日期之后)在 ProXmox 容器中安装了Debian Squeeze (6) 64 位。
我已经设置了存档存储库以允许我更新/安装包,它有效。我sources.list
的是:
deb http://archive.debian.org/debian squeeze main contrib non-free
deb http://archive.debian.org/debian squeeze-lts main contrib non-free
# Backports
deb http://archive.debian.org/debian-archive/debian-backports squeeze-backports main contrib non-free
# Security
deb http://archive.debian.org/debian-security squeeze/updates main contrib non-free
我不得不说,有很多过时的 GPG 密钥,更新后,有一些总是过时的,它们似乎不再受支持了。
我当前的版本dpkg
是 1.15.11 的原始 Squeeze versio,其中multiarch
不存在功能。它只出现在 1.16 中......足够好,上面列出的反向移植包含 dpkg 版本 1.16.9 中的 wheezy 包。
http://archive.debian.org/debian-archive/debian-backports/pool/main/d/dpkg/
但是我无法安装这个向后移植。当我运行命令时
apt-get install -t squeeze-backports dpkg
它回应:
Reading package lists... Done
Building dependency tree
Reading state information... Done
dpkg is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
apt-get policy dpkg
回报
dpkg:
Installed: 1.15.11
Candidate: 1.15.11
Version table:
*** 1.15.11 0
500 http://archive.debian.org/debian/ squeeze/main amd64 Packages
100 /var/lib/dpkg/status
如果我问,那是因为我很确定我已经把事情做好了。我想我处于存档版本有限制的前沿。
对于 Debian 6 上 64 位 ( ) 的 32 位 (
i386
) 构建amd64
,您不需要多体系结构;如果您安装gcc-multilib
或g++-multilib
(取决于您的目标)并使用gcc -m32
(或g++ -m32
)编译,您应该得到您想要的结果。