Nevermind. I found my mistake. When you're trying trying to get 32bit software to run under amd64, you quickly learn about Debian's multiarch approach. You're not supposed to install ia32-libs anymore but instead install libfoo:i386.
Well, that's what I did with the libc headers (apt-get install libc6-dev:i386). Only this time, it was a mistake. I had to deinstall it and install libc6-dev-i386 instead. That pulled some other important packages (gcc-multilib etc.) and now statifier builds fine.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Greetings!
It appears I have a chicken-egg-problem:
So, it seems like there are some files missing.
However:
So the files which are missing are actually there. I am at a loss as to how to proceed.
Is there a statified statifier so I can start statifying?
Nevermind. I found my mistake. When you're trying trying to get 32bit software to run under amd64, you quickly learn about Debian's multiarch approach. You're not supposed to install ia32-libs anymore but instead install libfoo:i386.
Well, that's what I did with the libc headers (apt-get install libc6-dev:i386). Only this time, it was a mistake. I had to deinstall it and install libc6-dev-i386 instead. That pulled some other important packages (gcc-multilib etc.) and now statifier builds fine.
I am glad you figured it out