You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
double-conversion Haskell package copies the double-conversion C library into its source tree.
This works well enough for most use cases, but problems begin when you want to link your program with some other C library that depends on system installed double-conversion C library.
You end up with duplicate symbol definition errors like this:
double_conversion/lib/libdouble-conversion.a(double-conversion.o): multiple definition of 'double_conversion::DoubleToStringConverter::HandleSpecialValues(double, double_conversion::StringBuilder*) const'
The text was updated successfully, but these errors were encountered:
double-conversion
Haskell package copies thedouble-conversion
C library into its source tree.This works well enough for most use cases, but problems begin when you want to link your program with some other C library that depends on system installed
double-conversion
C library.You end up with duplicate symbol definition errors like this:
The text was updated successfully, but these errors were encountered: