반응형
리눅스 환경에서 임베디드 개발을 위한 crosstool-ng 설치 방법을 빠르게 다뤄본다. 그냥 명령어를 순서대로 입력해주면 된다.
//필수 패키지 설치
sudo apt install build-essential autoconf bison flex texinfo \
help2man gawk libtool libtool-bin libtool-doc libncurses5-dev python3-dev \
python3-distutils git pkgconf unzip
git clone http://github.com/crosstool-ng/crosstool-ng
cd crosstool-ng
./bootstrap
./configure --enable-local
make
make install
반응형
'뭐라도 만들어보자!!( 프로젝트 ) > 프로그래밍 Tips' 카테고리의 다른 글
Ubuntu 22.03 버전에서 gcc-5, g++-5 설치하고 + 버전 변경하기 (0) | 2023.12.09 |
---|---|
WSL Ubuntu : "지정된 파일을 찾을 수 없습니다." 문제 해결 (0) | 2023.12.08 |
WSL 상에서 MCU 프로그래밍을 위한 준비, STLink USB 사용하기 (1) | 2023.12.07 |