libisl.so.15 Cannot Be Found During TiKV Compilation
Symptom
During TiKV compilation, the libisl.so.15 dynamic library cannot be found. The message "error while loading shared Libraries: libisl.so.15: cannot open shared object file: No such file or directory" is displayed.

Key Process and Cause Analysis
The dynamic library is missing or the path to the dynamic library is incorrect.
Conclusion and Solution
- Search for the library file.
1find / -name libisl.so.15

Or
1whereis libisl.so.15
- Set the path of the library file.
1cat /etc/ld.so.conf
- Make the library file take effect.
1ldconfig

- Compile TiKV again.
Parent topic: Troubleshooting