Jeff Sickel
2012-02-07 16:27:00 UTC
Just a quick question for other users of ARM based machines:
Should the ape/lib/openssl be ignored for ARM, or is there a decent alternative for objtype=arm when trying to
build it? The current build fails as /sys/include/ape/openssl/opensslconf.h errors out with 'unknown objtype'.
Otherwise, I can get ape/lib/openssl to build (though not necessarily be viable) by the subtle change below:
term% cd /sys/include/ape/openssl
term% diffy opensslconf.h
85c85,86
< #if defined(PLAN9) && defined(T386)
---
Should the ape/lib/openssl be ignored for ARM, or is there a decent alternative for objtype=arm when trying to
build it? The current build fails as /sys/include/ape/openssl/opensslconf.h errors out with 'unknown objtype'.
Otherwise, I can get ape/lib/openssl to build (though not necessarily be viable) by the subtle change below:
term% cd /sys/include/ape/openssl
term% diffy opensslconf.h
85c85,86
< #if defined(PLAN9) && defined(T386)
---
#if defined(PLAN9)
#if defined(T386)
86a88,89#if defined(T386)
#elif defined(Tarm)
#define ARM_ONLY
89a93,94#define ARM_ONLY
#endif
This small change has made it a lot easier to populate my arm tree.