| The llvm ARM backend is little endian elf output as my examination as below. Is it support bid endian by other llc options as below? llc -filetype=obj -march=arm // little endian llc -filetype=obj -march=? or -otheroption=? // to output big endian Jonathan |
_______________________________________________
LLVM Developers mailing list
LLV...@cs.uiuc.edu http://llvm.cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
I guess he need to change the data layout string in
ARMTargetMachine::ARMTargetMachine (ARMTargetMachine.cpp)
from "e" to "E" to get big endian output?
Regards,
chenwj
--
Wei-Ren Chen (陳韋任)
Computer Systems Lab, Institute of Information Science,
Academia Sinica, Taiwan (R.O.C.)
Tel:886-2-2788-3799 #1667
Homepage: http://people.cs.nctu.edu.tw/~chenwj
| All, Thank you! I just want to know if it support big endian like Mips without modify/add source code at this point, since I am new in ARM backend. Jonathan --- 13/4/23 (二),Anton Korobeynikov <an...@korobeynikov.info> 寫道:
|