summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2015-05-11 12:04:12 +0200
committerAndy Polyakov <appro@openssl.org>2015-05-13 16:47:55 +0200
commit6db8e3bdc9ef83d83b83f3eec9722c96daa91f82 (patch)
tree584aab02067fae531bfe7a84ec3c1f22fe6d43bc /test
parent50e2a0ea4615124aa159e8f43317dedcf0cfcaa2 (diff)
Add support for Android 5, both 32- and 64-bit cases.
Special note about additional -pie flag in android-armv7. The initial reason for adding it is that Android 5 refuses to execute non-PIE binaries. But what about older systems and previously validated platforms? It should be noted that flag is not used when compiling object code, fipscanister.o in this context, only when linking applications, *supplementary* fips_algvs used during validation procedure. Reviewed-by: Dr. Stephen Henson <steve@openssl.org>
Diffstat (limited to 'test')
-rw-r--r--test/fips_algvs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fips_algvs.c b/test/fips_algvs.c
index 170295f0b3..8ff75dcd2e 100644
--- a/test/fips_algvs.c
+++ b/test/fips_algvs.c
@@ -326,7 +326,7 @@ int main(int argc, char **argv)
SysInit();
#endif
-#if defined(__APPLE__) && (defined(__arm__) || defined(__aarch64__))
+#if (defined(__arm__) || defined(__aarch64__))
if (*args && !strcmp(*args, "-noaccel"))
{
extern unsigned int OPENSSL_armcap_P;