Right now, we're using a clang-format executable for both Linux and Mac to have the same version of clang-format no matter what version of it is installed on the user's system.
But this is causing issues with dynamic linking since different version can link to different .so.
Right now, we're using a
clang-format
executable for both Linux and Mac to have the same version of clang-format no matter what version of it is installed on the user's system.But this is causing issues with dynamic linking since different version can link to different
.so
.https://github.com/dawnbeen/c_formatter_42/issues/17#issuecomment-1008298872
We should find a way to either build a standalone
clang-format
executable or include the needed shared libaries with thec_formatter_42
package.