回答:
インストールgcc-arm-linux-gnueabi
してbinutils-arm-linux-gnueabi
パッケージ化し、コンパイルのarm-linux-gnueabi-gcc
代わりに使用しますgcc
。
ターゲットシステムで使用しているlinuxおよびbinutilsのフレーバーに注意する必要があります。最新のものはハードフロートです。この場合、次のようにします。
sudo apt-get install gcc-arm-linux-gnueabihf
これにより、binutilsを含む完全なクロスコンパイル環境が実現します。
openssl/ossl_typ.h
既にインストールしていたのにエラーが見つかりませんでしたlibssl-dev
。
apt-get source
、apt-get build-dep
通常は単にコンパイルできますdpkg-buildpackage -b -uc -us -r
。メイクファイルを変更せずにARM用の.debを簡単にビルドする方法はありますか?
and then just use arm-linux-gnueabi-gcc instead of gcc for compilation
か?コンパイルするときはmake
、AFAIKが自然に指す呼び出し、/usr/lib/gcc
またはそれに近い呼び出しを使用します。arm-linux-gnueabi-gccを直接呼び出すにはどうすればよいですか?
CC=arm-linux-gnueabihf-gcc make ...
ディスクイメージプロバイダーは、互換性のあるクロスコンパイラも提供する必要があります
これが唯一の信頼できる方法です。
特にRPIの場合、提供されているクロスコンパイラはhttps://github.com/raspberrypi/toolsで入手でき、https://raspberrypi.stackexchange.com/questions/64273/installing-raspberry-で説明されているように使用できます。パイクロスコンパイラ/ 83215#83215
git clone https://github.com/raspberrypi/tools
export PATH="$(pwd)/tools/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian-x64/bin:${PATH}"
printf '#include <stdio.h>\nint main() { puts("hello world"); }\n' > hello_world.c
printf '#include <iostream>\nint main() { std::cout << "hello world" << std::endl; }\n' > hello_world.cpp
arm-linux-gnueabihf-gcc -std=c99 -o hello_world_c hello_world.c
arm-linux-gnueabihf-g++ -std=c++11 -o hello_world_cpp hello_world.cpp
クロスコンパイラを誤って選択すると、次のことが発生する可能性があります。
私のお気に入りの選択肢は、Buildrootで独自のイメージを構築することです:https ://stackoverflow.com/questions/47557262/how-to-download-the-torvalds-linux-kernel-master-recompile-it-and-boot-it- wi / 49349237#49349237これにより、ソースからすべてが構築され、すべての互換性が確保されます。