6

The processor I'm building for is 64 bit ARM. Will this tool chain work?

DriverDev
  • 124
  • 1
  • 7
  • Semi-duplicate of http://stackoverflow.com/questions/21556051/how-to-use-aarch64-linux-gnu-objdump-to-disassemble-v7-mode-instructions-a32-t3 – unixsmurf Feb 12 '14 at 11:01

2 Answers2

3

64-bit ARM support in GCC is separate backend, called AARCH64. So your compiler normally must be called something like gcc-aarch64-linux-gnu-*.

Still, your question is strange, because, if you will rename 64-bit ARM compiler executable to gcc-arm-linux-gnueabi (you may do it, why not), then answer will be yes.

Konstantin Vladimirov
  • 6,791
  • 1
  • 27
  • 36
3

The answer is no.

The tool chain you are referencing is old, and works for 32bit architectures.

You need this (ubuntu): sudo apt-get install gcc-aarch64-linux-gnu g++-aarch64-linux-gnu

CraigDavid
  • 1,046
  • 1
  • 12
  • 26