Forum Discussion
Altera_Forum
Honored Contributor
11 years agoHi, 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 _________________________________________