adrian-thurston / colm

The Colm Programming Language
MIT License
164 stars 31 forks source link

colm: error while loading shared libraries: libcolm-0.14.7.so: cannot open shared object file: No such file or directory #131

Open AaronNGray opened 3 years ago

AaronNGray commented 3 years ago

Built and installed colm then ...

Getting the following, while using wsl Ubuntu building DSNP documentation :-

# make -f doc.mk
colm generate.lm
colm: error while loading shared libraries: libcolm-0.14.7.so: cannot open shared object file: No such file or directory
hardliner66 commented 2 years ago

By default the file is installed to: /usr/local/lib But it seems that ubuntu doesn't include that dir when searching for so file.

Simple fix: sudo ln -s /usr/local/lib/libcolm-0.14.7.so /lib/libcolm-0.14.7.so