Skip to content

Commit f29bfed

Browse files
karalabemmsqe
authored andcommitted
core/rawdb, ethdb/pebble: disable pebble on openbsd (ethereum#26801)
1 parent 36c2dcc commit f29bfed

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

core/rawdb/databases_64bit.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU Lesser General Public License
1515
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>
1616

17-
//go:build arm64 || amd64
17+
//go:build (arm64 || amd64) && !openbsd
1818

1919
package rawdb
2020

core/rawdb/databases_non64bit.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU Lesser General Public License
1515
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
1616

17-
//go:build !(arm64 || amd64)
17+
//go:build !((arm64 || amd64) && !openbsd)
1818

1919
package rawdb
2020

ethdb/pebble/pebble.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU Lesser General Public License
1515
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
1616

17-
//go:build arm64 || amd64
17+
//go:build (arm64 || amd64) && !openbsd
1818

1919
// Package pebble implements the key-value database layer based on pebble.
2020
package pebble

ethdb/pebble/pebble_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// You should have received a copy of the GNU Lesser General Public License
1515
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
1616

17-
//go:build arm64 || amd64
17+
//go:build (arm64 || amd64) && !openbsd
1818

1919
package pebble
2020

0 commit comments

Comments
 (0)