while vivado installing, the process stops at "generating installed device list"
turn off the vivado installing by Ctrl + c (do not cancel, then the library folder will be removed that makes you can not find the path for environment variable)
It is an error that can not load library.
To fix this, environment variable must be configured for vivado.
Find the path clang library, and configure "LD_LIBRARY_PATH"
LD_LIBRARY_PATH="/vivado/installed/directory/path/Vivado/2017.4/lnx64/tools/clang-3.9/lib:${LD_LIBRARY_PATH}"
export LD_LIBRARY_PATH
run installing by sudo
그다음은 실행하기 위한 환경설정
shell config file(e.g. zshrc) 에
PATH="/bin:/usr/bin:/usr/local/bin:/usr/sbin:${PATH}"
export PATH
LD_LIBRARY_PATH="/home/min/workspace/vivado/Vivado/2017.4/lnx64/tools/clang-3.9/lib:${LD_LIBRARY_PATH}"
export PATH
source /vivado/installed/directory/path/Vivado/version/settings64.sh
추가
/vivado/installed/directory/path/Vivado/version/bin/vivado file에
LD_LIBRARY_PATH="/vivado/installed/directory/path/Vivado/2017.4/lnx64/tools/clang-3.9/lib:${LD_LIBRARY_PATH}"
export LD_LIBRARY_PATH
추가
실행하면 라이브러리 관련 에러가 뜬다.
해당 경로에 라이브러리가 없거나 있어도 안맞는듯
해당 시스템의 같은 이름의 라이브러리를 소프트링크해주면 된다.
libtinfo.so.5 -> /lib/libncurses.so.5 ??????
끝
'linux' 카테고리의 다른 글
turn off beep sound on linux (0) | 2018.03.22 |
---|---|
vivado GUI xserver permission error (0) | 2018.03.22 |
printing duplex problem on linux (0) | 2018.03.15 |
how to fix [not in the sudoers file.] error (0) | 2016.04.19 |
vim 명령어 (0) | 2016.04.11 |