저는 임베디드 프로젝트를 위한 Linux 운영 체제 이미지를 구축하는 방법을 배우고 있으며 "Embedded Linux 시작하기"를 읽고 있습니다.
ARM XScale용 커널 컴파일을 시도했는데 중단되었습니다.
$ ARCH=arm CROSS_COMPILE=xscale_be-ixp4xx_defconfig를 만듭니다.
다음과 같은 오류가 발생합니다.
/bin/sh: xscale_be-gcc: command not found
/bin/sh: xscale_be-gcc: command not found
YACC scripts/kconfig/zconf.tab.c
/bin/sh: bison: command not found
scripts/Makefile.lib:196: recipe for target 'scripts/kconfig/zconf.tab.c' failed
make[1]: *** [scripts/kconfig/zconf.tab.c] Error 127
Makefile:544: recipe for target 'ixp4xx_defconfig' failed
make: *** [ixp4xx_defconfig] Error 2
지금 무엇을 놓치고 있으며 어떻게 해결하나요?
답변1
마침내 나는 그것을 발견했다.
먼저 다음 단계에 따라 arm-none-eabi-gcc를 설치하세요.팔 크로스 컴파일러 설치
둘째, 바이슨을 설치하십시오
sudo apt-get 설치 들소
마지막으로 수정된 명령
ARCH=arm CROSS_COMPILE=~/opt/gcc-arm-none-eabi-7-2018-q2-update/bin/arm-none-eabi-ixp4xx_defconfig를 만듭니다.