elastic / ml-cpp

Machine learning C++ code
Other
149 stars 62 forks source link

[ML] Suppress LNK4217 linker warning for libMlCore #2656

Closed edsavage closed 4 months ago

edsavage commented 4 months ago

The link step for libMlCore generates many LNK4217 warnings referencing Boost::Json symbols. The warning is indicating that the definitions of the symbols have already been imported in other translation units in the library.

These warnings are harmless and are safe to suppress (and are not avoidable by any other means as far as I can tell)

Relates #2653