core/rawdb, ethdb/pebble: disable pebble on openbsd (#26801)

pull/26802/head
Péter Szilágyi 2 years ago committed by GitHub
parent cd31f2dee2
commit 19f74fa3c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      core/rawdb/databases_64bit.go
  2. 2
      core/rawdb/databases_non64bit.go
  3. 2
      ethdb/pebble/pebble.go
  4. 2
      ethdb/pebble/pebble_test.go

@ -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

@ -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

@ -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

@ -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

Loading…
Cancel
Save