Skip to content

Commit

Permalink
fix: mips and mipsel builds (#124)
Browse files Browse the repository at this point in the history
* fix: mips and mipsel builds

fixes: #123

* swap el or le
  • Loading branch information
powersj authored Jun 30, 2023
1 parent dd3e503 commit 78ad891
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 && !mipsle
// +build !386,!arm,!mips,!mipsle

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 || mipsle
// +build arm 386 mips mipsle

package mssql

Expand Down

0 comments on commit 78ad891

Please sign in to comment.