compiling native GCC for arm using cross-compiler

后端 未结 1 1655
太阳男子
太阳男子 2021-01-06 01:50

I am looking to create a native build of GCC for an ARM system and I am running into some trouble. The build machine is i686-linux. Every tutorial I see tells me how to set

相关标签:
1条回答
  • 2021-01-06 02:15

    Look in the config.log file (maybe not the top-level one) and see what it was trying to do when the test failed. Just grep for the cannot compute suffix message and you should find the right bit (it won't be at the end of the file).

    Note that you'll need a working arm-unknown-linux-gnueabi-gcc on your path somewhere if you want to build a cross-native toolchain. I.e. you need a cross compiler to build cross-native compiler.

    0 讨论(0)
提交回复
热议问题