2012-06-20 2 views
4

qt를 컴파일 할 때 arm-linux-gcc라는 qws 대상이 있음을 발견했습니다. 나는 조금 주위를 둘러 보았지만 이것을 어디서 어디에서 찾을 수 있는지를 알 수 없었다. 나는 설치를 시도하고 apt-cache는 다음과 같은 출력을 주었다.arm-linux-gcc는 무엇이고 우분투에는 이것을 설치하는 방법

apt-cache search armel 
asterisk-prompt-fr-armelle - French voice prompts for Asterisk by Armelle Desjardins 
rootstock - shellscript to create armel rootfs tarballs using a VM 
rootstock-gtk - graphical frontend to the rootstock rootfs builder tool 
icedtea-6-jre-cacao - Alternative JVM for OpenJDK, using Cacao 
installation-guide-armel - Ubuntu installation guide for armel 
jasper - Configure a preinstalled ext2/3 system image 
cpp-4.3-arm-linux-gnueabi - The GNU C preprocessor 
cpp-4.4-arm-linux-gnueabi - The GNU C preprocessor 
g++-4.3-arm-linux-gnueabi - The GNU C++ compiler 
g++-4.4-arm-linux-gnueabi - The GNU C++ compiler 
gcc-4.3-arm-linux-gnueabi - The GNU C compiler 
gcc-4.4-arm-linux-gnueabi - The GNU C compiler 
gcc-4.4-base-armel-cross - The GNU Compiler Collection (base package) (for cross- compiling) 
libc-bin-armel-cross - Embedded GNU C Library: Binaries (for cross-compiling) 
libc-dev-bin-armel-cross - Embedded GNU C Library: Development binaries (for cross- compiling) 
libc6-armel-cross - Embedded GNU C Library: Shared libraries (for cross-compiling) 
libc6-dev-armel-cross - Embedded GNU C Library: Development Libraries and Header Files (for cross-compiling) 
libgcc1-armel-cross - GCC support library (for cross-compiling) 
libgcc1-dbg-armel-cross - GCC support library (debug symbols) 
libgfortran3-armel-cross - Runtime library for GNU Fortran applications 
libgfortran3-dbg-armel-cross - Runtime library for GNU Fortran applications (debug symbols) 
libgmp3-dev-armel-cross - Multiprecision arithmetic library developers tools (for cross-compiling) 
libgmp3c2-armel-cross - Multiprecision arithmetic library (for cross-compiling) 
libgmpxx4ldbl-armel-cross - Multiprecision arithmetic library (C++ bindings) (for cross-compiling) 
libgomp1-armel-cross - GCC OpenMP (GOMP) support library 
libgomp1-dbg-armel-cross - GCC OpenMP (GOMP) support library (debug symbols) 
libmpfr-dev-armel-cross - multiple precision floating-point computation developers tools (for cross-compiling) 
libmpfr4-armel-cross - multiple precision floating-point computation (for cross-compiling) 
libmudflap0-4.4-dev-armel-cross - GCC mudflap support libraries (development files) 
libmudflap0-armel-cross - GCC mudflap shared support libraries 
libmudflap0-dbg-armel-cross - GCC mudflap shared support libraries (debug symbols) 
libobjc2-dbg-armel-cross - Runtime library for GNU Objective-C applications (debug symbols) 
libstdc++6-4.3-dbg-armel-cross - The GNU Standard C++ Library v3 (debugging files) 
libstdc++6-4.3-dev-armel-cross - The GNU Standard C++ Library v3 (development files) 
libstdc++6-4.3-pic-armel-cross - The GNU Standard C++ Library v3 (shared library subset kit) 
libstdc++6-4.4-dbg-armel-cross - The GNU Standard C++ Library v3 (debugging files) 
libstdc++6-4.4-dev-armel-cross - The GNU Standard C++ Library v3 (development files) 
libstdc++6-4.4-pic-armel-cross - The GNU Standard C++ Library v3 (shared library subset kit) 
libstdc++6-armel-cross - The GNU Standard C++ Library v3 (for cross-compiling) 
linux-libc-dev-armel-cross - Linux support headers for userspace development (for cross-compiling) 
tzdata-armel-cross - time zone and daylight-saving time data (for cross-compiling) 
zlib1g-armel-cross - compression library - runtime (for cross-compiling) 
zlib1g-dev-armel-cross - compression library - development (for cross-compiling) 
cpp-4.1-arm-linux-gnueabi - The GNU C preprocessor 
cpp-4.2-arm-linux-gnueabi - The GNU C preprocessor 
g++-4.1-arm-linux-gnueabi - The GNU C++ compiler 
g++-4.2-arm-linux-gnueabi - The GNU C++ compiler 
gcc-4.1-arm-linux-gnueabi - The GNU C compiler 
gcc-4.2-arm-linux-gnueabi - The GNU C compiler 
libmpfr1ldbl-armel-cross - multiple precision floating-point computation (for cross- compiling) 
libobjc2-armel-cross - Runtime library for GNU Objective-C applications 
libstdc++6-4.1-dbg-armel-cross - The GNU Standard C++ Library v3 (debugging files) 
libstdc++6-4.1-dev-armel-cross - The GNU Standard C++ Library v3 (development files) 
libstdc++6-4.1-pic-armel-cross - The GNU Standard C++ Library v3 (shared library subset kit) 
libstdc++6-4.2-dbg-armel-cross - The GNU Standard C++ Library v3 (debugging files) 
libstdc++6-4.2-dev-armel-cross - The GNU Standard C++ Library v3 (development files) 
libstdc++6-4.2-pic-armel-cross - The GNU Standard C++ Library v3 (shared library subset kit) 

내 시스템 팔 컴파일러가 있다고 생각합니다. 어떤 사람이 "arm-linux-gcc"를 설치하는 것을 도와 줄 수 있습니까?

답변

20

arm 타겟 세트가있는 gcc 컴파일러가 누락되었습니다. 이것은 오랜 시간 동안 우분투 아카이브에 미리 패키징되어 있으므로 소스에서 이것을 빌드 할 필요는 없습니다.

sudo apt-get install gcc-arm-linux-gnueabi

관련 문제