From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jeff Sickel Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Date: Tue, 7 Feb 2012 10:27:00 -0600 Message-Id: To: Fans of the OS Plan 9 from Bell Labs <9fans@9fans.net> Mime-Version: 1.0 (Apple Message framework v1257) Subject: [9fans] ape under arm Topicbox-Message-UUID: 62a0908c-ead7-11e9-9d60-3106f5b1d025 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=3Darm when trying to=20 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 > #elif defined(Tarm) > #define ARM_ONLY 89a93,94 > #endif >=20 This small change has made it a lot easier to populate my arm tree.