Programmable Devices
CPLDs, FPGAs, SoC FPGAs, Configuration, and Transceivers
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
21616 Discussions

Problem with the ARM DS-5 Debugger

Altera_Forum
Honored Contributor II
2,060 Views

Hello Guys, 

I'm using SoCkit Evaluation board. I'm trying to following the SoCkit_Materials which was downloaded from http://www.arrownac.com/solutions/sockit/

When I'm trying to use the debugger in ARM DS-5, I'm getting the following error message. 

Could anyone tell me what is wrong with it? 

 

I tried to access the error file in the pop up window. I got the following message in the terminal. 

[jianlu@localhost ~]$ /home/jianlu/altera/sw/debughw/debug_server/vstrm_serverd_rddi 

/home/jianlu/altera/sw/debughw/debug_server/vstrm_serverd_rddi: error while loading shared libraries: libboost_thread-gcc44-mt-1_43.so.1.43.0: cannot open shared object file: No such file or directory 

 

Then I tried to update libboost using# yum install boost-devel 

After that, I still get the same error message. 

Thank you very much for you guys help. 

 

Best, 

Tony
0 Kudos
2 Replies
Altera_Forum
Honored Contributor II
910 Views

Also small trouble in Eclipse DS-5: in Debug mouse pointed variable often not display hint with its value. 

In Release may be aftermath of optimizing, and in Debug why ? 

This observed in -ARMCC and in -GNU versions of compilers. Debug Info not off, -g.
0 Kudos
Altera_Forum
Honored Contributor II
910 Views

Hi, I had the same problem with an Arria V SoC board, with the DS-5 running on CentOS 6.5. It looks like the host operating system was changed to no longer include the current working directory in the load library search path. What fixed it was adding the debugger path to the load library path. I have the following wrapper script around DS-5 (mind the trailing '\' characters, those need to be the last character on their line). You'll want to change your Altera tools path to match your installation, of course, and make the file executable. 

 

_________________________________________ 

 

# !/bin/bash 

QUARTUS_ROOTDIR=/tools/altera/13.1/quartus  

LD_LIBRARY_PATH=/tools/altera/13.1/quartus/linux:/tools/altera/13.1/embedded/ds-5/sw/debughw/debug_server  

/tools/altera/13.1/embedded/ds-5/bin/eclipse 

_________________________________________
0 Kudos
Reply