Forum Discussion

Altera_Forum's avatar
Altera_Forum
Icon for Honored Contributor rankHonored Contributor
12 years ago

Problem with the ARM DS-5 Debugger

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

2 Replies

  • Altera_Forum's avatar
    Altera_Forum
    Icon for Honored Contributor rankHonored Contributor

    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.
  • Altera_Forum's avatar
    Altera_Forum
    Icon for Honored Contributor rankHonored Contributor

    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

    _________________________________________