Facing an error “*** glibc detected *** free(): invalid next size (fast)”

It could be that Java itself is linked against a different glibc than your libraries or that the libraries are linked differently/to different glibcs. Also check if one of the libraries is linking against a debug version of the glibc (hat that problem on windows with the C++ runtime lib). Try linking your libraries staticly … Read more

tech