From b6b1498275fd68d9b44e0c6181a1a370d6c3789d Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Tue, 21 Feb 2023 06:11:44 +0200 Subject: [PATCH] Use link=static instead of visibility=global (which doesn't help) --- test/Jamfile.v2 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index d272daf..049c607 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -363,10 +363,10 @@ run memory_resource_test.cpp ; run data_test.cpp ; run size_test.cpp ; -run serialization_nvp_test.cpp : : : /boost//serialization/off norecover:no ; -run serialization_split_free_test.cpp : : : /boost//serialization/off norecover:global ; -run serialization_split_member_test.cpp : : : /boost//serialization/off norecover:global ; -run serialization_construct_data_test.cpp : : : /boost//serialization/off norecover:global ; +run serialization_nvp_test.cpp : : : /boost//serialization/off norecover:static ; +run serialization_split_free_test.cpp : : : /boost//serialization/off norecover:static ; +run serialization_split_member_test.cpp : : : /boost//serialization/off norecover:static ; +run serialization_construct_data_test.cpp : : : /boost//serialization/off norecover:static ; use-project /boost/core/swap : ./swap ; build-project ./swap ;