Descriptionruntime: remove OABI check from ARM startup
The code in question is trying to print a nice error message
when a Go EABI binary runs on an OABI machine.
Unfortunately, the only way to do that is to use
ARM Thumb instructions, which we otherwise don't use.
There exist ARM EABI machines that do not support Thumb.
We could run on them if not for this OABI check, so disable it.
Fixes issue 5685.
Patch Set 1 #Patch Set 2 : diff -r 873dcabd042f https://code.google.com/p/go/ #Patch Set 3 : diff -r 873dcabd042f https://code.google.com/p/go/ #Patch Set 4 : diff -r c45fa194202f https://code.google.com/p/go/ #MessagesTotal messages: 3
|