From 77bd21028d2f1914b0bdf95a95c6635ebed8e027 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Capelle?= Date: Sun, 9 Jun 2024 15:37:27 +0200 Subject: [PATCH] More boost components for USVFS. --- src/tasks/boost.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tasks/boost.cpp b/src/tasks/boost.cpp index eaeb81c..f64038e 100644 --- a/src/tasks/boost.cpp +++ b/src/tasks/boost.cpp @@ -231,8 +231,9 @@ namespace mob::tasks { // static link, static runtime, x64 do_b2(components, "static", "static", arch::x64); - // static link, static runtime, x86, required by usvfs 32-bit + // static link, static/shared runtime, x86, required by usvfs 32-bit do_b2(components, "static", "static", arch::x86); + do_b2(components, "static", "shared", arch::x86); // static link, shared runtime, x64 do_b2(components, "static", "shared", arch::x64);