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
To address another issue, I've had to link libiconv.dll, and binaries that reference it, against the shared runtime. (libiconv returns results in errno, so it's necessary for the caller to link against the same runtime to access the same errno variable). We already distribute the shared runtime in our 'bin' directory.
It would be possible to link our bundled LLVM tools (clang-tidy, clang-format) to the shared runtime as well. Currently, they are linked statically against the runtime. We'd have to move them into the same 'bin' directory. This could slightly reduce the size of the VSIX.
The text was updated successfully, but these errors were encountered:
To address another issue, I've had to link
libiconv.dll
, and binaries that reference it, against the shared runtime. (libiconv returns results in errno, so it's necessary for the caller to link against the same runtime to access the same errno variable). We already distribute the shared runtime in our 'bin' directory.It would be possible to link our bundled LLVM tools (clang-tidy, clang-format) to the shared runtime as well. Currently, they are linked statically against the runtime. We'd have to move them into the same 'bin' directory. This could slightly reduce the size of the VSIX.
The text was updated successfully, but these errors were encountered: