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

 

+ Recent posts