From 624f858c82a05c41c3185785a3a4a396a7e23161 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Fri, 4 Feb 2022 14:43:18 +0100 Subject: [PATCH] Don't link test/ec_internal_test with libapps.a It's not at all necessary, and on some platforms, it's disruptive (leads to unresolved symbols because of object files that get included in the link that depend on libssl). Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/17637) --- test/build.info | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/build.info b/test/build.info index 726bd22127c..6357a7f2fe2 100644 --- a/test/build.info +++ b/test/build.info @@ -519,7 +519,7 @@ INCLUDE_MAIN___test_libtestutil_OLB = /INCLUDE=MAIN {- rebase_files("../apps", split(/\s+/, $target{apps_init_src})) -} INCLUDE[ec_internal_test]=../include ../crypto/ec - DEPEND[ec_internal_test]=../apps/libapps.a ../libcrypto.a libtestutil.a + DEPEND[ec_internal_test]=../libcrypto.a libtestutil.a SOURCE[curve448_internal_test]=curve448_internal_test.c INCLUDE[curve448_internal_test]=.. ../include ../crypto/ec/curve448 -- 2.47.2