Skip to content

Commit

Permalink
fix: mips and mipsel builds
Browse files Browse the repository at this point in the history
fixes: #123
  • Loading branch information
powersj committed Jun 30, 2023
1 parent dd3e503 commit 8829e25
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ucs22str.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//go:build !386 && !arm
// +build !386,!arm
//go:build !386 && !arm && !mips && !mipsel
// +build !386,!arm,!mips,!mipsel

package mssql

Expand Down
4 changes: 2 additions & 2 deletions ucs22str_32bit.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//go:build arm || 386
// +build arm 386
//go:build arm || 386 || mips || mipsel
// +build arm 386 mips mipsel

package mssql

Expand Down

0 comments on commit 8829e25

Please sign in to comment.