]> Cypherpunks repositories - gostls13.git/commit
runtime: remove OABI check from ARM startup
authorRuss Cox <rsc@golang.org>
Mon, 9 Sep 2013 19:06:05 +0000 (15:06 -0400)
committerRuss Cox <rsc@golang.org>
Mon, 9 Sep 2013 19:06:05 +0000 (15:06 -0400)
commit6252b41981a5e5566b727de14cda5aece4bee98f
treee1b606c66a490f353202fd2676ae2dd7ab08b899
parent9c21ce54dd3625aac3b948b509a9562b684434bc
runtime: 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 #5685.

R=golang-dev, minux.ma
CC=golang-dev
https://golang.org/cl/13234050
src/pkg/runtime/rt0_linux_arm.s