wav2letter icon indicating copy to clipboard operation
wav2letter copied to clipboard

/usr/bin/ld : cannot find -lsycl

Open Jibril2 opened this issue 3 years ago • 2 comments

My make fails at 74% with NNSerializationTest.dir/build.make, /DevicePtrTest.dir/build.make and /ModuleTest.dir/build.make due to this error.

/usr/bin/ld : cannot find -lsycl

Not sure what this means, no reference to "lsycl" on here and Google is failing.

Jibril2 avatar Jul 02 '21 20:07 Jibril2

cc @jacobkahn @xuqiantong @vineelpratap

tlikhomanenko avatar Jul 06 '21 07:07 tlikhomanenko

I had same issue. /usr/bin/ld : cannot find -lsycl mean that ld cannot find libsycl.so. You can find it by use command: locate libsycl.so and link it to usr/lib using command sudo ln -s path_to_libsycl.so /usr/lib

congson1293 avatar Oct 14 '21 10:10 congson1293