Study(pending)/임베디드 리눅스 프로그래밍 완전정복
p.61 crosstool-NG 설치
박만규
2020. 1. 13. 07:17
61page에 crosstool-NG 설치 과정은 다음과 같다.
$ git clone https://github.com/crosstool-ng/crosstool-ng.git
$ cd crosstool-ng
$ git checkout crosstool-ng-1.22.0
$ ./bootstrap
$ ./configure --enable-local
$ make
$ make install
하지만 안된다....
여러차례 삽질끝에 성공한 명령어는 다음과 같다
$ sudo apt install help2man
$ sudo apt install libtool-bin
$ git clone https://github.com/crosstool-ng/crosstool-ng.git
$ cd crosstool-ng/
$ ./bootstrap
$ ./configure --enable-local
$ make
$ sudo make install