cuda8.0 /usr/bin/ld: cannot find -lGL

/usr/bin/ld: cannot find -lGL

collect2: ld returned 1 exit status

[email protected]:~/$ cd  /usr/lib

locate libGL

sudo ln -s usr/lib/x86_64/../libGL.so.1 libGL.so

时间: 2024-10-10 23:56:58

cuda8.0 /usr/bin/ld: cannot find -lGL的相关文章

关于usr/bin/ld: cannot find -lxxx问题总结(Qt编译错误cannot find -lGL)

决定终结这个问题!(网上要想找到完整的解答实在太难了) http://blog.sciencenet.cn/blog-676535-541444.html 前两天手贱,把虚拟机玩崩溃了,只好重装虚拟机,把以前的工作再做一遍.在安装好qt-creator之后,编译程序遇到了下面这个错误 cannot find -lGL 百度了一下,找到的解决方法如下 sudo apt-get install libqt4-dev或者sudo apt-get install libgl1-mesa-dev或者sud

关于/usr/bin/ld: cannot find -lcrypto 的错误

Linux下 build code 时,要做 -lssl, -lcrypto 的链接,出现类似下面的错误: /usr/bin/ld: cannot find -lcrypto /usr/bin/ld: cannot find -lssl 原因是没有找到 libssl.so yum info openssl,发现openssl 1.0.0已经安装了 ll /usr/lib64/libssl*,得到 -rwxr-xr-x. 1 root root 242112 Jul 17 2012 /usr/li

【转】“/usr/bin/ld: cannot find -lz”

原文网址:http://stackoverflow.com/questions/3373995/usr-bin-ld-cannot-find-lz I am trying to compile Android source code under Ubuntu 10.04. I get an error saying, /usr/bin/ld: cannot find -lzCan you please tell me how can I fix it? What does cannot find

Android 编译错误/usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-linux-gnu/4.4.5/../

编译时出现/usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-linux-gnu/4.4.5/../../../libz.so when searching for -lz错误 ============================================ PLATFORM_VERSION_CODENAME=AOSP PLATFORM_VERSION=AOSP TARGET_PRODUCT=generic TARGET_BUIL

Linux下编译C/C++时,出现/usr/bin/ld: cannot find -l*** 错误的处理

直接在命令行输入: # locate  lib*** 显示出文件所在路径, 然后在命令行: # ln -s 文件路径/文件名  /usr/lib/文件名 应该解决了. 例如: #  gcc first.c  -lclntsh /usr/bin/ld: cannot find -lclntshcollect2: ld 返回 1 #  locate  libclntsh /u01/app/oracle/product/11.2.0/dbhome_1/inventory/Scripts/ext/lib

Android error: "/usr/bin/ld: cannot find -lz"

Android编译的时候出现错误: /usr/bin/ld: cannot find -lz collect2: ld returned 1 exit status 解决: sudo apt-get install zlib1g-dev 正在读取软件包列表... 完成 正在分析软件包的依赖关系树 正在读取状态信息... 完成 下列[新]软件包将被安装: zlib1g-dev 升级了 0 个软件包,新安装了 1 个软件包,要卸载 0 个软件包,有 0 个软件包未被升级. 需要下载 162kB 的软

/usr/bin/ld: cannot find -lperconaserverclient_r 解决

编译sqladvisor安装遇到: [[email protected] sqladvisor]# cd SQLAdvisor/sqladvisor/ [[email protected] sqladvisor]# cmake -DCMAKE_BUILD_TYPE=debug ./ -- Configuring done -- Generating done -- Build files have been written to: /opt/SQLAdvisor/sqladvisor [[ema

chkrootkit 编译报错的解决/usr/bin/ld: cannot find -lc

1:Centos6.5安装chkrootkit wget ftp://ftp.pangeia.com.br/pub/seg/pac/chkrootkit.tar.gz tar xvf chkrootkit.tar.gz cd chkrootkit-0.51/ make sense报错如下: /usr/bin/ld: cannot find -lc collect2: ld returned 1 exit status make: *** [strings-static] Error 1 2:解决

【转】关于usr/bin/ld: cannot find -lxxx问题总结

原文网址:http://eminzhang.blog.51cto.com/5292425/1285705 /usr/bin/ld: cannot find -lxxx问题总结 linux下编译应用程序常常会出现如下错误: /usr/bin/ld: cannot find -lxxx 意思是编译过程找不到对应库文件.其中,-lxxx表示链接库文件 libxxx.so. 注:有时候,由于库文件是编译过程临时生成的,如果前面出错也会导致出现这种情况,下面针对的是由于本机系统环境缺失而引起的.. 一般出