赛灵思
直播中

李青

7年用户 165经验值
私信 关注
[问答]

Ubuntu 9.04上的EDK 10.1怎么运行?

大家好,
我知道它没有得到官方支持,但根据网络上的各种论坛,人们在Ubuntu 9.04上成功运行EDK10.1。
不过,不是我。
安装似乎成功完成。
我可以启动ISE,据我所知,它运行得很好。
但是,如果我启动'xps',我会得到'Xilinx Platform Studio'窗口,但它只包含空的'Project Information Area'和一个空的'Console Window'。
菜单栏仅显示“帮助”菜单,其中包含一个子菜单“XilinxUpdate”。
有任何想法吗?
是否有一个由'xps'编写的日志文件,我可以查看一下?
再见,迈克尔

以上来自于谷歌翻译


以下为原文

Hi all,

I know its not officially supported, but according to various forums on the web people had success runing EDK10.1 on Ubuntu 9.04. Not me, though. Installation seems to complete successfully. I can start ISE and as far as I can tell at this point it runs just fine. However, if I start up 'xps' I get the 'Xilinx Platform Studio' window, but it only contains the empty 'Project Information Area' and an empty 'Console Window'. The menu bar only shows the 'Help' menu with a single sub-menu 'XilinxUpdate'.

Any ideas? Is there a log file written somewhere by 'xps' that I could have a look at?

Bye, Michael

回帖(4)

刘勇

2018-11-19 14:50:08
嗨mijung,
我也在Ubuntu 9.04上运行EDK 10.1并且在2天前遇到了同样的问题。
我认为EDK缺少一些图书馆。
这是Debian的一个很好的安装指南:链接
它解决了我的问题。
目前我正在为Ubuntu 9.04 x64编写安装指南。
我将在下一个视图日发布一个链接。

以上来自于谷歌翻译


以下为原文

Hi mijung,
 
I am running EDK 10.1 on Ubuntu 9.04 too and had the same problem 2 days ago. I think EDK is missing some libraries.
 
Here is a good installation guide for Debian: link
It solved the problem for me.
 
At the moment I'm writing a installation guide for Ubuntu 9.04 x64. I will post a link in the next view days.
举报

刘勇

2018-11-19 15:02:56
我刚刚完成安装指南:在Ubuntu 9.04 64Bit上安装EDK 10.1
一切都很好 - 我对XMD的问题很小:
起初,XMD提示
xmd:加载共享库时出错:libCseJtag.so
所以,我在这里找到了这个小解决方法。
我将xmd移动到xmd_并创建了一个新的xmd可执行文件,其中包含以下内容: 
#!/ bin / bashexport XILINX = / opt / Xilinx / 10.1 / ISEexport XILINX_EDK = / opt / Xilinx / 10.1 / EDKexport LD_LIBRARY_PATH = $ XILINX_EDK / lib / lin64:$ XILINX / lib / lin64 / $ XILINX_EDK / bin / lin64 / _xmd
XMD现在开始。
但是当我将microblaze bootloop下载到FPGA后启动XMD时,它不会连接到处理器。
它只显示xmd提示.Accordiingly调试不起作用。
XMD是否可能缺少tcl脚本的路径?
有没有办法配置路径或手动启动它们?
消息由djhousecat在12-01-2009 03:31 AM编辑

以上来自于谷歌翻译


以下为原文

I just finished the installation guide: EDK 10.1 Installation on Ubuntu 9.04 64Bit
 
Everything is working fine - I just got little Problem with XMD:
 
At  first, XMD prompted 
 
xmd: error while loading share libraries: libCseJtag.so 
So, I found this little Workaround here .
I moved xmd to xmd_ and created a new xmd executable with following contents:
 
 
#!/bin/bash
export XILINX=/opt/Xilinx/10.1/ISE
export XILINX_EDK=/opt/Xilinx/10.1/EDK
 
export LD_LIBRARY_PATH=$XILINX_EDK/lib/lin64:$XILINX/lib/lin64/
 
$XILINX_EDK/bin/lin64/_xmd 
 
XMD starts now.
But when I start XMD after downloading the microblaze bootloop to the FPGA, it doesn't connect to the processor.
It just displays the xmd prompt.Accordiingly debugging isn't functioning.
 
Is it possible that XMD is missing the path to the tcl-scripts? 
Is there a way to configure the path or start them manually?
Message Edited by djhousecat on  12-01-2009 03:31 AM
举报

刘勇

2018-11-19 15:20:12
好吧,我发现我可以使用connect mb mdm手动连接到处理器,但是在启动时运行脚本会很好。

以上来自于谷歌翻译


以下为原文

Ok, I figured out that I can connect to the processor manually using
connect mb mdm

However, running scripts on startup would be nice.
举报

刘勇

2018-11-19 15:39:12
我刚刚确定我忘记了在xmd skript中调用_xmd时传递参数。
xmd skript应如下所示:
#!/ bin / bashexport XILINX = / opt / Xilinx / 10.1 / ISEexport XILINX_EDK = / opt / Xilinx / 10.1 / EDKexport LD_LIBRARY_PATH = $ XILINX_EDK / lib / lin64:$ XILINX / lib / lin64 / $ XILINX_EDK / bin / lin64 / echo
“执行$ 0 $ 1 $ 2 $ 3 $ 4 $ 5 $ 6 $ 7 $ 8 $ 9”_xmd $ 1 $ 2 $ 3 $ 4 $ 5 $ 6 $ 7 $ 8 $ 9
教程:在Ubuntu 9.04 x64上安装EDK 10.1

以上来自于谷歌翻译


以下为原文

I just firgured out that I forgot to pass the parameters when calling _xmd out of the xmd skript.
 
xmd skript should look like this:
 
#!/bin/bash
export XILINX=/opt/Xilinx/10.1/ISE
export XILINX_EDK=/opt/Xilinx/10.1/EDK
 
export LD_LIBRARY_PATH=$XILINX_EDK/lib/lin64:$XILINX/lib/lin64/
 
$XILINX_EDK/bin/lin64/
echo "executing  $0 $1 $2 $3 $4 $5 $6 $7 $8 $9"
_xmd  $1 $2 $3 $4 $5 $6 $7 $8 $9  
 
Tutorial: EDK 10.1 installation on Ubuntu 9.04 x64
举报

更多回帖

发帖
×
20
完善资料,
赚取积分