When compile int128 division method with clang-cl (Clang-11.0 and MSVC2019), it occurs this error.
Code like:
__int128 a, b;
auto c = a / b;
and compiler outputs:
1>lld-link :error : undefined symbol: __divti3
1>>>> referenced by <path>\int128.h:594
How to fix it ?