Problem1: Documention and Example can't open, Xilinx SDK  Ubuntu.

 

Step1: Click the Document link or Example link.

We can see the error message from the terminal where you execute vivado command.

The message said ‘GLIBCXX_3.4.9’ not found.

And the location locked is :

/opt/Xilinx/Vivado/2013.4/ids_lite/ISE/lib/lin64/libstdc++.so.6

 

Step2:find the GLIBC edition vivado want from the following location:

bash$: strings /usr/lib/i386-linux-gnu/libstdc++.so.6 |grep GLIBCXX

‘GLIBCXX_3.4.9’ located in this file /usr/lib/i386-linux-gnu/libstdc++.so.6

 

Step3: Make a link from /opt/Xilinx/Vivado/2013.4/ids_lite/ISE/lib/lin64/libstdc++.so.6     in step1

to /usr/lib/i386-linux-gnu/libstdc++.so.6    in step2, like the following screen:

bash$: mv libstdc++.so.6 libstdc++.so.6.bak

make sure you backup the old version of libstdc++lib.

bash$: ln /usr/lib/i386-linux-gnu/libstdc++.so.6 libstdc++.so.6

Try to click ‘Documention’ again and see if it works~

bash$:/opt/Xilinx/Vivado/2013.4/ids_lite/ISE/lib/lin64# ll | grep 'libstd*'

 

Problem2: Console not avaiable in debugging program.

Step1: Make sure you have installed two parts of drivers:

Part1:crypress-UART driver ( compile USB(CDC-ACM) in linux kernel) this will be installed automatically if you have installed Vivado successfully.

Part1(test): make sure /dev/ttyACM0 show up when you link the board to your computer.

Part2:Additional diligent-program driver is needed, you can download them from the website of digilent   you can also download them from my cloud storage:

digilent.adept.runtime_2.10.2-i686.tar.gz

libCseDigilent_2.4.3-i686.tar.gz

then install them by follow documents inside of the package.

Step2: Open your Project , right click the name of Project –> Run as –> Run Configurations

Step3: Double Click the bottom item of left window, choose STDIO_Connection, and choose JTAG_UART as port, apply and run.

Step4: Open minicom configur seriel port to ttyACM0. You can see the output.

Xilinx SDK Problem Solution in Ubuntu的更多相关文章

  1. Xilinx Zynq ZC-702 开发(02)—— 通过 Xilinx SDK 调试 Linux 应用

    远程调试环境由 PC 上运行的 System Debugger(集成在 Xilinx SDK 中) 和 Zynq 板上运行的 Linux TCF Agent 共同构成, 两者通过 TCP 连接,架构图 ...

  2. Xilinx SDK使用教程

    本文参考 Xilinx SDK软件内置的教程,打开方法:打开SDK->Help->Cheet Sheets...->Xilinx SDK Tutorials,这里有6篇文档.本文详细 ...

  3. 区分DDD中的Domain, Subdomain, Bounded Context, Problem/Solution Space

    区分DDD中的Domain, Subdomain, Bounded Context, Problem/Solution Space 译自: Domain, Subdomain, Bounded Con ...

  4. Xilinx SDK编译Microblaze时出错

    reference:http://www.eeboard.com/evaluation/digilent-cmod-a7-fpga/9/ 在vivado 2015.4中创建microblaze软核,l ...

  5. Lintcode399 Nuts & Bolts Problem solution 题解

    [题目描述] Given a set of n nuts of different sizes and n bolts of different sizes. There is a one-one m ...

  6. 在 xilinx SDK 使用 math.h

    在使用到cos sin tan等算法的时候添加了math库 #include <math.h> 但是却报错了 'Invoking: ARM gcc linker'arm-xilinx-ea ...

  7. 70.如何在xilinx SDK中显示行号

    Window→preferences→editor→test editor 对ecilpse的通用方法 打开Eclipse软件,在菜单中选择窗口——首选项,打开新的窗口. 在新的窗口中依次选择常规—— ...

  8. 怎样在xilinx SDK中显示行号

    Window→preferences→editor→test editor 对ecilpse的通用方法 打开Eclipse软件,在菜单中选择窗体--首选项.打开新的窗体. 在新的窗体中依次选择常规-- ...

  9. xilinx SDK开发 GPIO使用API总结

    t_v GPIO常用函数 1.XGpio_Config *XGpio_LookupConfig(u16 DeviceId) 功能:根据输入设备ID查找该设备. 输入:设备ID. 输出:若找到该设备ID ...

随机推荐

  1. 关于c中 int, float, double转换中存在的精度损失问题

    先看一段代码实验: #include<limits> #include<iostream> using namespace std; int main() { unsigned ...

  2. hdu 5692 Snacks 线段树+dfs

    Snacks Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total Sub ...

  3. Liferay 6.2 改造系列之十九:修改站点设置的表单内容

    在/portal-master/portal-impl/src/portal.properties文件中,有如下配置: # # Input a list of sections that will b ...

  4. 30分钟LINQ教程(转)

    在说LINQ之前必须先说说几个重要的C#语言特性 一:与LINQ有关的语言特性 1.隐式类型 (1)源起 在隐式类型出现之前, 我们在声明一个变量的时候, 总是要为一个变量指定他的类型 甚至在fore ...

  5. JavaScrip入门(3)

    函数: var m2=function(){ console.log('2222'); } console.log(typeof(m2)); 输出结果:test.html:31 function js ...

  6. Matlab 查看变量信息who whos命令

  7. 20145223《Java程序程序设计》第7周学习总结

    20145223 <Java程序设计>第7周学习总结 教材学习内容总结 ·时间的度量: (1)格林威治标准时间 (2)世界时 (3)国际原子时 (4)世界协调时间 (5)Unix时间 (6 ...

  8. 技术:使用Amazon S3接口云存储(Java版)

    http://blog.sina.com.cn/s/blog_6c7c14270102wait.html

  9. Spring3.0 demo (注解自动注入)

    这个demo是maven工程,目录结构如下 pom.xml maven依赖 .....省略 <dependency> <groupId>org.springframework& ...

  10. Codeforces 546E Soldier and Traveling(最大流)

    题目大概说一张无向图,各个结点初始有ai人,现在每个人可以选择停留在原地或者移动到相邻的结点,问能否使各个结点的人数变为bi人. 如此建容量网络: 图上各个结点拆成两点i.i' 源点向i点连容量ai的 ...