Forum Discussion
nios2_command_shell fails
- 4 years ago
I determined that one particular line in the script C:\intelFPGA_lite\18.0\nios2eds\nios2_command_shell.sh works on one Windows 10 PC but not another.
If I split the following line into two statements, then the problem goes away.
_ACDS_ROOT=$(dirname $(dirname ${_this_nios2_command_shell_script}))
Solution:
_R1=$(dirname ${_this_nios2_command_shell_script})
_ACDS_ROOT=$(dirname $_R1)
I determined that one particular line in the script C:\intelFPGA_lite\18.0\nios2eds\nios2_command_shell.sh works on one Windows 10 PC but not another.
If I split the following line into two statements, then the problem goes away.
_ACDS_ROOT=$(dirname $(dirname ${_this_nios2_command_shell_script}))
Solution:
_R1=$(dirname ${_this_nios2_command_shell_script})
_ACDS_ROOT=$(dirname $_R1)