강의

멘토링

커뮤니티

Inflearn Community Q&A

qsdeqrefd's profile image
qsdeqrefd

asked

Design Self-Study Tastebi's Practical Verilog HDL Season 1 (From Clock to Internal Memory)

(Archive) Essential Course! Xilinx Vivado 2020.2 Installation, 2021.1, 2021.2 Installation Verified! (Based on WSL in Windows 10. If you're a design engineer, you need to get familiar with the Linux environment!)

마지막 library link 연결 오류

Resolved

Written on

·

216

1

마지막까지 오류가 나서 library link를 시도했으나 상기와 같은 오류가 발생합니다.

혹시 해결방법을 알려주실 수 있으신가요..?

verilog-hdlfpga임베디드

Answer 2

1

qsdeqrefd님의 프로필 이미지
qsdeqrefd
Questioner

어쩌다보니 우분투를 재설치해서 해결했습니다

AMD 프로세서라 그런지 sudo apt gcc 설치할때 추가적인 메시지에 대응 안하면

gcc 설치가 제대로 되지 않아 발생한 문제였던 듯 합니다.

(메시지가 프로세서 유닛을 언급했었습니다.)

추후에도 저와같은 문제가 발생한 사람이 있다면 참고바랍니다.

맛비님도 친절히 안내해주셔서 감사합니다.

semisgdh님의 프로필 이미지
semisgdh
Instructor

아 그렇군요.

해결하셨다니 다행이네요.

즐공하세요 :)

0

semisgdh님의 프로필 이미지
semisgdh
Instructor

안녕하세요 :)

에러 메세지를 보시면, 만들려는 file 이 존재해서 fail 이 된 것으로 확인되구요.

기존에 존재하던 libtinfo.so.5 를 지우고, 그 다음 다시 link 를 걸어보면 될 것 같아요.

 

sudo rm /lib/x86_64-linux-gnu/libtinfo.so.5 #기존에 존재하던 file 삭제.

#해결 방법 

sudo apt update                   # ubuntu 업데이트

sudo apt install libtinfo-dev   # libtinfo-dev 설치

sudo ln -s /lib/x86_64-linux-gnu/libtinfo.so.6 /lib/x86_64-linux-gnu/libtinfo.so.5    # library link 과정.

 

차례대로 해보시고, 알려주세요 :)

qsdeqrefd's profile image
qsdeqrefd

asked

Ask a question