It is possible to build a platform that supports multilib versions of curl, like x64 and x32 however only version (testing shows it is the x64 version) of the header files make it into /usr/include/curl Other distributions have implemented a solution by changing the file like this: $ cat /usr/include/curl/curlbuild.h #include <bits/wordsize.h> #if __WORDSIZE == 32 #include "curlbuild-32.h" #elif __WORDSIZE == 64 #include "curlbuild-64.h" #else #error "Unknown word size" #endif
WRL501.10 ./wrlinux-5/wrlinux/configure --enable-board=intel-xeon-core-haswell --enable-rootfs=glibc_std_sato --enable-kernel=preempt-rt --enable-build=production add curl and lib32-curl packages