search for: otheroption

Displaying 3 results from an estimated 3 matches for "otheroption".

2013 Apr 23
3
[LLVMdev] Is the llvm ARM support big endian elf/obj output?
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 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130423/cd183228/attachment.html>
2013 Apr 23
0
[LLVMdev] Is the llvm ARM support big endian elf/obj output?
...9:26 AM, gamma_chen <gamma_chen at yahoo.com.tw> wrote: > 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 > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > > -- With best regards, Anton K...
2007 Mar 08
1
[LLVMdev] required command line options
In the CommandLine parser there is a way to specify that a command line option is required. Is there a way to specify that the option is required only if some other option is set? In particular, I want to build a transformation T that opt loads. So, I when I register T with opt a boolean command line option is created. If the option is set by the user, then the transformation is run.