What is wrong with my cross compiler?

前端 未结 2 1314
暗喜
暗喜 2021-01-28 03:25

I am trying to compile a basic program that i can get to cross compile on my mac. I am running Mac OS X Mavericks. My cross compiler is arm-elf-gcc-4.7.3. I wrote a simple test

相关标签:
2条回答
  • 2021-01-28 03:53

    The compiler was using the wrong assembler. I had to specify the prefix with -B/opt/local/arm-elf-

    0 讨论(0)
  • 2021-01-28 04:07

    Reads like the compiler spat out assembly the assembler couldn't read. Check for mismatches.

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