I would like to build 32-bit Poco libraries on Mac OS (since I have other fixed 32-bit dependencies). By default, Poco only builds x86_64 for the target.
I tried to build Poco like this (as per Poco build instructions):
POCO_TARGET_OSARCH=i386 make
However, it is still only building for x86_64. Any ideas?
==============================================>
Well, it turns out that this is the answer (in case someone else comes across this):
You need to export these two variables before running configure and do:
POCO_TARGET_OSARCH="i386" ARCHFLAGS="-arch i386"
Daniel Schuler
source share