ubuntu install lattice diamond(FPGA)

Tried on Ubuntu16.04 x64

1. Change to debian pakage
sudo alien -d ./diamond_3_10-base_x64-111-2-x86_64-linux.rpm
2. Install deb
sudo dpkg -i diamond-3-10-base-x64_3.10-112_amd64.deb
3. Post-Process
sudo cp untar.sh /usr/local/diamond/3.10_x64
cd /usr/local/diamond/3.10_x64
sh untar.sh
cd /bin/lin64
sudo mv libpng12.so.0 libpng12.so.0.old
sudo ln -s /usr/lib/x86_64-linux-gnu/libpng12.so.0 libpng12.so.0
4. Run
./diamond

#########untar.sh

sudo tar -xvf ./tcltk/tcltk.tar.gz -C ./tcltk/
sudo tar -xvf ./synpbase/synpbase.tar.gz -C ./synpbase/
sudo tar -xvf ./examples/examples.tar.gz -C ./examples/
sudo tar -xvf ./cae_library/cae_library.tar.gz -C ./cae_library/
sudo tar -xvf ./embedded_source/embedded_source.tar.gz -C ./embedded_source/
sudo tar -xvf ./ispfpga/ispfpga.tar.gz -C ./ispfpga/
sudo tar -xvf ./data/data.tar.gz -C ./data/
sudo tar -xvf ./bin/bin.tar.gz -C ./bin/

sudo unzip ./module/pcie.zip -d ./module/
sudo unzip ./module/rldram.zip -d ./module/

Ref:

http://hardtechlife.com/installing-lattice-diamond-on-ubuntu-14-04/

原文地址:https://www.cnblogs.com/luoyanghero/p/8159047.html

时间: 2024-08-26 01:51:18

ubuntu install lattice diamond(FPGA)的相关文章

[Ubuntu] Install teamviewer9 on Ubuntu14.04_x64

The article copied from http://ubuntuhandbook.org/index.php/2013/12/install-teamviewer-ubuntu-1404/ TeamViewer 9 Stable now is available. It features multiple connections in tabs, wake-on-lan, two step authentication, shared clipboard and more. This

ubuntu install rpm

简单来说,Ubuntu的软件包格式是deb,如果要安装rpm的包,则要先用alien把rpm转换成deb. sudo apt-get install alien #alien默认没有安装,所以首先要安装它 sudo alien xxxx.rpm #将rpm转换位deb,完成后会生成一个同名的xxxx.deb sudo dpkg -i xxxx.deb #安装 注意,用alien转换的deb包并不能保证100%顺利安装,所以可以找到deb最好直接用deb 有时候,我们想要使用的软件并没有被包含到

Lattice Diamond 和 ispLEVER 的不同之处

Lattice Diamond 和 ispLEVER.有一些不同,尤其是如何管理工程的不同,包括以下几点: 1.ispLEVER 有多种工程类型,不同的程序文件类型需要不同的类型的工程:但是Diamond只有一种工程类型, 可以包括不同的类型的程序文件. 2.Lattice Diamond  包括implementations (实体)和 strategies (策略).但是ispLEVER 却不包括. 3.当一个i工程被打开时,spLEVER会自动解析程序文件的层次,这会引起 存在混合的顶层文

Lattice Diamond

http://blog.sina.com.cn/s/blog_49a879e40101fahm.html 刚开始接触到diamond,感觉界面与ISE和Quartus还都差不多吧,记下一些以防不常用而忘记. 1.Tools->spread sheet view进行时序约束.物理约束. 2.diamond有一个自动生成的时序约束文件,.prf文件,这个是在两个前提下可以自动生成,第一个就是在project->active strategy,在map trace settings选项里有一个aut

【转】Ubuntu安装ARM架构GCC工具链(ubuntu install ARM toolchain)最简单办法

原文网址:http://www.cnblogs.com/muyun/p/3370996.html 一.安装ARM-Linux-GCC工具链 只需要一句命令: sudo apt-get install gcc-arm-linux-gnueabi 前提是你的Ubuntu系统版本是官网支持的最新的版本,若不是,请升级.执行以上命令即可. 二.使用工具链 注意!这里不能使用 gcc 命令来召唤它.它的名字是 arm-linux-gnueabi-gcc .如果出现 Command Not Found,请关

Ubuntu Install Chrome Brwoser

在ubuntu下安装chrome浏览器,可以直接从官网下载:http://www.google.cn/intl/zh-CN/chrome/browser/thankyou.html?platform=linux 也可以通过命令行方式安装,可以参考这个方法:http://www.howopensource.com/2011/10/install-google-chrome-in-ubuntu-11-10-11-04-10-10-10-04/ 这里说一下命令行方式安装方法: 1.添加源和KEY wg

ubuntu install scrapy

使用apt-get安装scrapy后,调试起来总是不对,检查了一下版本,才知道默认安装的版本是0.14.04.o(╯□╰)o 查阅了一下官方文档,这是推荐的安装方法: Import the GPG key used to sign Scrapy packages into APT keyring: sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 627220E7 Create /etc/apt/sources.l

ubuntu install mysql server method

     recently try to install mysql in my computer so that  I can practise some sql statement on sever.But there are some problem while install mysql package in my ubuntu system.I hava tried lots of ways to move on. at last.I find there is a best way

Ubuntu install g++

We can use two ways to  install g++ on Ubuntu. 1.  a. sudo apt-get install make gcc g++.      b. sudo apt-get install manpages-dev. 2. sudo apt-get install build-essential.