영 안되네..
odroid 커널 빌드 해보려고 하는데
CC=distcc make -j8 해도
make -j8 CC=distcc 해도 안되서
이래저래 찾아 보는중
$ time make -j8 CC=distcc kernel compilation using single machine : real 50m55.498s user 71m4.967s sys 6m55.030s kernel compilation using three machines: real 28m21.146s user 17m32.862s sys 4m35.537s |
[링크 : http://linuxdeveloper.blogspot.com/2012/03/distributed-kernel-compilation-in.html]
[링크 : http://askubuntu.com/.../how-to-speed-up-compilation-of-ubuntu-apps-make-cmake-gcc]
[링크 : http://pointclouds.org/documentation/advanced/distcc.php]
역시.. 진리(?)의 makefile 수정 뿐인가?
Edit the Makefile Fire up your favourite editor and load /usr/src/linux/Makefile. Find this section: Code: # # Include the make variables (CC, etc...) # And change "gcc" in the CC line to Code: CC = $(CROSS_COMPILE)distcc Append this line to the section: Code: DISTCC_HOSTS=slave1 slave2 slave3 ... slaveN |
'프로그램 사용 > distcc & ccache' 카테고리의 다른 글
distcc zeroconf 와 avahi (0) | 2016.10.17 |
---|---|
distcc 를 DHCP 에서.. (0) | 2016.09.28 |
distcc-pump error (0) | 2016.09.25 |
distcc 크로스 컴파일/커널 빌드 관련 (0) | 2016.09.13 |
distcc 로 valgrind-3.6.1 컴파일 실패? (0) | 2014.12.12 |