launchdarkly / cpp-sdks

C++ Client/Server SDKs
Other
5 stars 3 forks source link

ci: force boost to be linked statically in hello apps #451

Closed cwaldren-ld closed 1 month ago

cwaldren-ld commented 1 month ago

The dynamically linked hello apps on Windows haven't worked, ever. Missing symbols in boost.

This might be because we're trying to link boost dynamically, but we're somehow doing it wrong (or the artifacts are built wrong?).

So, this PR attempts to force static linking of boost. This might not work because we don't have position-independent boost static libs on Windows. But it's worth a shot.