From 4df5eaf2b009cf12f213b0045aac950642baa00c Mon Sep 17 00:00:00 2001 From: Simon Butcher Date: Wed, 24 Aug 2016 22:58:31 +0300 Subject: [PATCH] Fixes build configuration for armcc test build in all.sh In the test script tests/scripts/all.sh the armcc build is a baremetal build and doesn't use MBEDTLS_HAVE_TIME therefore the test configuration MBEDTLS_PLATFORM_TIME_ALT which is dependent on it must be unset. --- tests/scripts/all.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/scripts/all.sh b/tests/scripts/all.sh index 22137cd43..be32dce12 100755 --- a/tests/scripts/all.sh +++ b/tests/scripts/all.sh @@ -338,6 +338,7 @@ scripts/config.pl unset MBEDTLS_THREADING_PTHREAD scripts/config.pl unset MBEDTLS_THREADING_C scripts/config.pl unset MBEDTLS_MEMORY_BACKTRACE # execinfo.h scripts/config.pl unset MBEDTLS_MEMORY_BUFFER_ALLOC_C # calls exit +scripts/config.pl unset MBEDTLS_PLATFORM_TIME_ALT # depends on MBEDTLS_HAVE_TIME CC=armcc AR=armar WARNING_CFLAGS= make lib fi # armcc