Skip to content

Commit

Permalink
core/rawdb, ethdb/pebble: disable pebble on openbsd (#26801)
Browse files Browse the repository at this point in the history
  • Loading branch information
karalabe committed Mar 3, 2023
1 parent cd31f2d commit 19f74fa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion core/rawdb/databases_64bit.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>

//go:build arm64 || amd64
//go:build (arm64 || amd64) && !openbsd

package rawdb

Expand Down
2 changes: 1 addition & 1 deletion core/rawdb/databases_non64bit.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.

//go:build !(arm64 || amd64)
//go:build !((arm64 || amd64) && !openbsd)

package rawdb

Expand Down
2 changes: 1 addition & 1 deletion ethdb/pebble/pebble.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.

//go:build arm64 || amd64
//go:build (arm64 || amd64) && !openbsd

// Package pebble implements the key-value database layer based on pebble.
package pebble
Expand Down
2 changes: 1 addition & 1 deletion ethdb/pebble/pebble_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.

//go:build arm64 || amd64
//go:build (arm64 || amd64) && !openbsd

package pebble

Expand Down

0 comments on commit 19f74fa

Please sign in to comment.