이해하기 쉽도록 튜토리얼로 작성하겠습니다.
참고 :이 자습서는 이전 raspbian 이미지에 대해서만 작동합니다. Debian Buster를 기반으로 한 최신 Raspbian의 경우이 스레드에서 다음 방법을 참조하십시오. https://stackoverflow.com/a/58559140/869402
사전 요구 사항
시작하기 전에 다음이 설치되어 있는지 확인해야합니다.
apt-get install git rsync cmake ia32-libs
파이를 크로스 컴파일합시다!
홈 디렉토리에 raspberrypi
.
이 폴더로 이동하여 위에서 언급 한 전체 도구 폴더를 아래로 당깁니다.
git clone git://github.com/raspberrypi/tools.git
gcc-linaro-arm-linux-gnueabihf-raspbian
내가 잘못 읽지 않았다면 다음 세 가지 중 하나를 사용하고 싶었 습니다.
홈 디렉토리로 이동하여 다음을 추가하십시오.
export PATH=$PATH:$HOME/raspberrypi/tools/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian/bin
이름이 지정된 파일의 끝까지 ~/.bashrc
이제 로그 아웃했다가 다시 로그인하거나 (즉, 터미널 세션을 다시 시작) . ~/.bashrc
터미널에서 실행 PATH
하여 현재 터미널 세션에 추가 된 항목 을 선택할 수 있습니다.
이제 컴파일러에 액세스 할 수 있는지 확인합니다 arm-linux-gnueabihf-gcc -v
. 다음과 같은 결과를 얻을 수 있습니다.
Using built-in specs.
COLLECT_GCC=arm-linux-gnueabihf-gcc
COLLECT_LTO_WRAPPER=/home/tudhalyas/raspberrypi/tools/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian/bin/../libexec/gcc/arm-linux-gnueabihf/4.7.2/lto-wrapper
Target: arm-linux-gnueabihf
Configured with: /cbuild/slaves/oort61/crosstool-ng/builds/arm-linux-gnueabihf-raspbian-linux/.b
uild/src/gcc-linaro-4.7-2012.08/configure --build=i686-build_pc-linux-gnu --host=i686-build_pc-
linux-gnu --target=arm-linux-gnueabihf --prefix=/cbuild/slaves/oort61/crosstool-ng/builds/arm-l
inux-gnueabihf-raspbian-linux/install --with-sysroot=/cbuild/slaves/oort61/crosstool-ng/builds/
arm-linux-gnueabihf-raspbian-linux/install/arm-linux-gnueabihf/libc --enable-languages=c,c++,fo
rtran --disable-multilib --with-arch=armv6 --with-tune=arm1176jz-s --with-fpu=vfp --with-float=
hard --with-pkgversion='crosstool-NG linaro-1.13.1+bzr2458 - Linaro GCC 2012.08' --with-bugurl=
https://bugs.launchpad.net/gcc-linaro --enable-__cxa_atexit --enable-libmudflap --enable-libgom
p --enable-libssp --with-gmp=/cbuild/slaves/oort61/crosstool-ng/builds/arm-linux-gnueabihf-rasp
bian-linux/.build/arm-linux-gnueabihf/build/static --with-mpfr=/cbuild/slaves/oort61/crosstool-
ng/builds/arm-linux-gnueabihf-raspbian-linux/.build/arm-linux-gnueabihf/build/static --with-mpc
=/cbuild/slaves/oort61/crosstool-ng/builds/arm-linux-gnueabihf-raspbian-linux/.build/arm-linux-
gnueabihf/build/static --with-ppl=/cbuild/slaves/oort61/crosstool-ng/builds/arm-linux-gnueabihf
-raspbian-linux/.build/arm-linux-gnueabihf/build/static --with-cloog=/cbuild/slaves/oort61/cros
stool-ng/builds/arm-linux-gnueabihf-raspbian-linux/.build/arm-linux-gnueabihf/build/static --wi
th-libelf=/cbuild/slaves/oort61/crosstool-ng/builds/arm-linux-gnueabihf-raspbian-linux/.build/a
rm-linux-gnueabihf/build/static --with-host-libstdcxx='-L/cbuild/slaves/oort61/crosstool-ng/bui
lds/arm-linux-gnueabihf-raspbian-linux/.build/arm-linux-gnueabihf/build/static/lib -lpwl' --ena
ble-threads=posix --disable-libstdcxx-pch --enable-linker-build-id --enable-plugin --enable-gol
d --with-local-prefix=/cbuild/slaves/oort61/crosstool-ng/builds/arm-linux-gnueabihf-raspbian-li
nux/install/arm-linux-gnueabihf/libc --enable-c99 --enable-long-long
Thread model: posix
gcc version 4.7.2 20120731 (prerelease) (crosstool-NG linaro-1.13.1+bzr2458 - Linaro GCC 2012.08
)
하지만 헤이! 나는 그것을했고 libs는 여전히 작동하지 않습니다!
아직 끝나지 않았습니다! 지금까지 우리는 기본 만했습니다.
당신에 raspberrypi
폴더라는 폴더를 만들어 rootfs
.
이제 전체 /lib
및 /usr
디렉터리를 새로 만든이 폴더 에 복사해야 합니다. 일반적으로 rpi 이미지를 가져와 rsync를 통해 복사합니다.
rsync -rl --delete-after --safe-links pi@192.168.1.PI:/{lib,usr} $HOME/raspberrypi/rootfs
여기서 192.168.1.PI
당신의 라즈베리 파이의 IP로 대체됩니다.
이제 cmake
구성 파일 을 작성해야 합니다. ~/home/raspberrypi/pi.cmake
좋아하는 편집기에서 열고 다음을 삽입하십시오.
SET(CMAKE_SYSTEM_NAME Linux)
SET(CMAKE_SYSTEM_VERSION 1)
SET(CMAKE_C_COMPILER $ENV{HOME}/raspberrypi/tools/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian/bin/arm-linux-gnueabihf-gcc)
SET(CMAKE_CXX_COMPILER $ENV{HOME}/raspberrypi/tools/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian/bin/arm-linux-gnueabihf-g++)
SET(CMAKE_FIND_ROOT_PATH $ENV{HOME}/raspberrypi/rootfs)
SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
이제 다음과 cmake
같은 추가 플래그를 추가하기 만하면 프로그램 을 컴파일 할 수 있습니다 -D CMAKE_TOOLCHAIN_FILE=$HOME/raspberrypi/pi.cmake
..
사용 cmake 안녕하세요 세계 예제 :
git clone https://github.com/jameskbride/cmake-hello-world.git
cd cmake-hello-world
mkdir build
cd build
cmake -D CMAKE_TOOLCHAIN_FILE=$HOME/raspberrypi/pi.cmake ../
make
scp CMakeHelloWorld pi@192.168.1.PI:/home/pi/
ssh pi@192.168.1.PI ./CMakeHelloWorld