본문 바로가기

뭐라도 만들어보자!!( 프로젝트 )/프로그래밍 Tips

Ubuntu에서 crosstool-ng 설치하기

반응형

 리눅스 환경에서 임베디드 개발을 위한 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

 

 

반응형