Displaying 1 result from an estimated 1 matches for "extenasions".
2012 May 17
2
[LLVMdev] subtarget features
...le, if Mips16 or Micro Mips is not present, then I want the
subfeature "standard encoding".
If I can't do this, then it requires me to write a more complex
expression for the "standard encoding" expresions.
For mips , mips16 and micro mips are considered to be processor
extenasions to mips32 and mips64.
So usually you would build a mips32 or mips64 compiler and then add
-mips16 to the command line.
Right now, there are no implementations of micro mips or mips16 with
mips 64, though architecturally it is defined.
So the options would be:
-mips16 -mips32 -micromips -mips6...