当前位置:网站首页>缺少库while loading shared libraries: libisl.so.15: cannot open shared object file: No such file
缺少库while loading shared libraries: libisl.so.15: cannot open shared object file: No such file
2022-07-03 01:31:00 【玻璃晴朗橘子辉煌】
rk3568交叉编译器路径:
[email protected]100ask:~/prebuilts/gcc/linux-x86/aarch64/gcc-buildroot-9.3.0-2020.03-x86_64_aarch64-rockchip-linux-gnu/bin$ ls
2to3 aarch64-linux-gcc-ar aarch64-linux-strip aarch64-rockchip-linux-gnu-gcc.br_real aclocal gawk infocmp msggrep python2 qemu-nbd
2to3-3.7 aarch64-linux-gcc.br_real aarch64-rockchip-linux-gnu-addr2line aarch64-rockchip-linux-gnu-gcc-nm aclocal-1.15 gdbus infotocap msginit python2.7 recode-sr-latin
aarch64-linux-addr2line aarch64-linux-gcc-nm aarch64-rockchip-linux-gnu-ar aarch64-rockchip-linux-gnu-gcc-ranlib autoconf gdbus-codegen ivshmem-client msgmerge python2.7-config reset
aarch64-linux-ar aarch64-linux-gcc-ranlib aarch64-rockchip-linux-gnu-as aarch64-rockchip-linux-gnu-gcov autoheader gettextize ivshmem-server msgunfmt python2-config smtpd.py
aarch64-linux-as aarch64-linux-gcov aarch64-rockchip-linux-gnu-c++ aarch64-rockchip-linux-gnu-gcov-dump autom4te gio libtool msguniq python3 smtpd.py.7
aarch64-linux-c++ aarch64-linux-gcov-dump aarch64-rockchip-linux-gnu-c++.br_real aarch64-rockchip-linux-gnu-gcov-tool automake gio-querymodules libtoolize ncurses6-config python3.7 tabs
aarch64-linux-c++.br_real aarch64-linux-gcov-tool aarch64-rockchip-linux-gnu-cc aarch64-rockchip-linux-gnu-gdb automake-1.15 glib-compile-resources lzip ninja python3.7-config tic
aarch64-linux-cc aarch64-linux-gdb aarch64-rockchip-linux-gnu-cc.br_real aarch64-rockchip-linux-gnu-gprof autopoint glib-compile-schemas m4 openssl python3.7m toe
aarch64-linux-cc.br_real aarch64-linux-gprof aarch64-rockchip-linux-gnu-c++filt aarch64-rockchip-linux-gnu-ld autoreconf glib-genmarshal meson patchelf python3.7m-config toolchain-wrapper
aarch64-linux-c++filt aarch64-linux-ld aarch64-rockchip-linux-gnu-cpp aarch64-rockchip-linux-gnu-ld.bfd autoscan glib-gettextize msgattrib pcre-config python3-config tput
aarch64-linux-cpp aarch64-linux-ld.bfd aarch64-rockchip-linux-gnu-cpp.br_real aarch64-rockchip-linux-gnu-nm autoupdate glib-mkenums msgcat pcregrep python-config tset
aarch64-linux-cpp.br_real aarch64-linux-nm aarch64-rockchip-linux-gnu-elfedit aarch64-rockchip-linux-gnu-objcopy bison gobject-query msgcmp pcretest python-freeze-importlib xgettext
aarch64-linux-elfedit aarch64-linux-objcopy aarch64-rockchip-linux-gnu-g++ aarch64-rockchip-linux-gnu-objdump captoinfo gresource msgcomm pkgconf pyvenv xml2-config
aarch64-linux-g++ aarch64-linux-objdump aarch64-rockchip-linux-gnu-g++.br_real aarch64-rockchip-linux-gnu-ranlib clear gsettings msgconv pkg-config qemu-aarch64 xmlcatalog
aarch64-linux-g++.br_real aarch64-linux-ranlib aarch64-rockchip-linux-gnu-gcc aarch64-rockchip-linux-gnu-readelf c_rehash gtester msgen pydoc qemu-edid xmllint
aarch64-linux-gcc aarch64-linux-readelf aarch64-rockchip-linux-gnu-gcc-9.3.0 aarch64-rockchip-linux-gnu-size easy_install gtester-report msgexec pydoc3 qemu-ga xmlwf
aarch64-linux-gcc-9.3.0 aarch64-linux-size aarch64-rockchip-linux-gnu-gcc-9.3.0.br_real aarch64-rockchip-linux-gnu-strings easy_install-3.7 ifnames msgfilter pydoc3.7 qemu-img yacc
aarch64-linux-gcc-9.3.0.br_real aarch64-linux-strings aarch64-rockchip-linux-gnu-gcc-ar aarch64-rockchip-linux-gnu-strip gapplication igawk msgfmt python qemu-io
配置环境变量:
export PATH=$PATH:/home/book/prebuilts/gcc/linux-x86/aarch64/gcc-buildroot-9.3.0-2020.03-x86_64_aarch64-rockchip-linux-gnu/bin
编译时缺少库路径:
aarch64-linux-gcc-9.3.0 -o tcp_ser tcp_server.c tcp_socket.c tcp_socket.h
/home/book/prebuilts/gcc/linux-x86/aarch64/gcc-buildroot-9.3.0-2020.03-x86_64_aarch64-rockchip-linux-gnu/bin/../libexec/gcc/aarch64-rockchip-linux-gnu/9.3.0/cc1: error while loading shared libraries: libisl.so.15: cannot open shared object file: No such file or directory
/home/book/prebuilts/gcc/linux-x86/aarch64/gcc-buildroot-9.3.0-2020.03-x86_64_aarch64-rockchip-linux-gnu/bin/../libexec/gcc/aarch64-rockchip-linux-gnu/9.3.0/cc1: error while loading shared libraries: libisl.so.15: cannot open shared object file: No such file or directory
/home/book/prebuilts/gcc/linux-x86/aarch64/gcc-buildroot-9.3.0-2020.03-x86_64_aarch64-rockchip-linux-gnu/bin/../libexec/gcc/aarch64-rockchip-linux-gnu/9.3.0/cc1: error while loading shared libraries: libisl.so.15: cannot open shared object file: No such file or directory
找到缺少动态库路径,为该可执行文件要用的库的路径,引入该环境变量的时候操作系统就会去找该变量下的类库:
export LD_LIBRARY_PATH=/usr/local/X11/lib:$LD_LIBRARY_PATH/home/book/prebuilts/gcc/linux-x86/aarch64/gcc-buildroot-9.3.0-2020.03-x86_64_aarch64-rockchip-linux-gnu/lib
边栏推荐
- 网络安全-木马
- 【Camera专题】Camera dtsi 完全解析
- [data mining] task 5: k-means/dbscan clustering: double square
- Introduction to kotlin collaboration
- How can retail enterprises open the second growth curve under the full link digital transformation
- 网络安全-浅谈安全威胁
- 微信小程序开发工具 POST net::ERR_PROXY_CONNECTION_FAILED 代理问题
- Analyzing several common string library functions in C language
- ¢ growth path and experience sharing of getting an offer
- [camera topic] how to save OTP data in user-defined nodes
猜你喜欢
STM32 - vibration sensor control relay on
【Camera专题】手把手撸一份驱动 到 点亮Camera
Virtual list
NCTF 2018 part Title WP (1)
[data mining] task 5: k-means/dbscan clustering: double square
[camera topic] complete analysis of camera dtsi
Technology sharing | Frida's powerful ability to realize hook functions
The technology boss is ready, and the topic of position C is up to you
Ni visa fails after LabVIEW installs the third-party visa software
How is the mask effect achieved in the LPL ban/pick selection stage?
随机推荐
Processing of tree structure data
What are the differences between software testers with a monthly salary of 7K and 25K? Leaders look up to you when they master it
【数据挖掘】任务1:距离计算
微信小程序开发工具 POST net::ERR_PROXY_CONNECTION_FAILED 代理问题
How to refresh the opening amount of Oracle ERP
A 30-year-old software tester, who has been unemployed for 4 months, is confused and doesn't know what to do?
Storage basic operation
Internal connection query and external connection
【Camera专题】OTP数据如何保存在自定义节点中
Introduction to flask tutorial
[camera topic] turn a drive to light up the camera
小程序开发的部分功能
NCTF 2018 part Title WP (1)
网络安全-信息收集
自定义组件、使用npm包、全局数据共享、分包
Network security - Information Collection
DQL basic operation
[shutter] animation animation (basic process of shutter animation | create animation controller | create animation | set value listener | set state listener | use animation values in layout | animatio
[camera special topic] Hal layer - brief analysis of addchannel and startchannel
网络安全-NAT网络地址转换