运行sudo apt-get build-dep llvm-3.3
unable to find source package for llvm-3.3
我正在使用Ubuntu 11.10(我正在使用这个旧版本用于特殊用途)我正在尝试构建一个特定的软件,并且他们的构建指令要求使用ubuntu 11.10。
感谢您的时间
答案 0 :(得分:1)
LLVM 3.3从未针对Ubuntu 11.10发布,因此您将无法在源档案中找到该软件包。
您可以直接从LLVM site下载LLVM 3.3,并手动执行configure,make,install过程以在您的系统上配置它。您可能需要手动搜索某些依赖项才能使用,但./configure会告诉您需要的内容。
答案 1 :(得分:0)
不再支持Ubuntu 11.10,可能是您没有从存储库中获取任何软件包。
将您的/etc/sources.list
更改为以下内容:
deb http://old-releases.ubuntu.com/ubuntu/ oneiric main
deb-src http://old-releases.ubuntu.com/ubuntu/ oneiric main
deb http://old-releases.ubuntu.com/ubuntu/ oneiric-updates main
deb-src http://old-releases.ubuntu.com/ubuntu/ oneiric-updates main
deb http://old-releases.ubuntu.com/ubuntu/ oneiric universe
deb-src http://old-releases.ubuntu.com/ubuntu/ oneiric universe
deb http://old-releases.ubuntu.com/ubuntu/ oneiric-updates universe
deb-src http://old-releases.ubuntu.com/ubuntu/ oneiric-updates universe
deb http://old-releases.ubuntu.com/ubuntu oneiric-security main
deb-src http://old-releases.ubuntu.com/ubuntu oneiric-security main
deb http://old-releases.ubuntu.com/ubuntu oneiric-security universe
deb-src http://old-releases.ubuntu.com/ubuntu oneiric-security universe
然后运行apt-get update
,然后重试。
有一篇文章here有更详细的内容。