lvgl / lv_binding_micropython

LVGL binding for MicroPython
MIT License
250 stars 161 forks source link

open librt from librt.so.1 #278

Closed liuyunrui123 closed 1 year ago

liuyunrui123 commented 1 year ago

Adapt to embedded board

amirgon commented 1 year ago

Hi @liuyunrui123 Could you clarify this a little?

In general, librt.so should be a symbolic link to the specific version of the library (for example, librt.so.1). Why is it missing on your platform? Perhaps something is not installed correctly on your side?

Your change would break on platforms where a higher versions of librt.so is installed (for example, if librt.so.2 is installed in the system instead of librt.so.1), that's why it might make more sense to not use the specific version of the library when loading it.

liuyunrui123 commented 1 year ago

You are correct, but I couldn't find librt.so on both of my Arm boards. Perhaps I need to check the issue on my end.