diff options
author | Kevin Krakauer <krakauer@google.com> | 2021-05-12 10:14:56 -0700 |
---|---|---|
committer | Kevin Krakauer <krakauer@google.com> | 2021-05-12 10:14:56 -0700 |
commit | b3d42a6ce72d6e4155c26a1c48be4991458665e7 (patch) | |
tree | face1b4537bf289e9ff8db6b253360956c93a797 | |
parent | 8f6bfe257e162c14faa25ee00dc249859994c2c8 (diff) |
enable building //pkg/tcpip on 32-bit MIPS
N.B. we don't explicitly support MIPS, but there's no reason it
shouldn't work.
-rw-r--r-- | pkg/atomicbitops/aligned_32bit_unsafe.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/atomicbitops/aligned_32bit_unsafe.go b/pkg/atomicbitops/aligned_32bit_unsafe.go index 776da53b0..df706b453 100644 --- a/pkg/atomicbitops/aligned_32bit_unsafe.go +++ b/pkg/atomicbitops/aligned_32bit_unsafe.go @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -// +build arm 386 +// +build arm mips 386 package atomicbitops |