gcc - Compiling assembly code for aarch64 -
i have generated assembly file try.s aarch64 instruction set.i want compile on arm8 (aarch64 processor) running ubuntu. native compiler gcc(4.8) , use following command compile
gcc -o try.o try.s
i getting following errors error : arm register expected -- mov x10,x0
it seems aarch4 registers not being recognized although thought gcc 4.8 supported aarch64. can tell me missing or there special option should include.or suggest me native compiler(not cross-compilers) doing aarch64.i use gdb debug natively.
Comments
Post a Comment