Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
19f74fa3
Unverified
Commit
19f74fa3
authored
Mar 03, 2023
by
Péter Szilágyi
Committed by
GitHub
Mar 03, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
core/rawdb, ethdb/pebble: disable pebble on openbsd (#26801)
parent
cd31f2de
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
databases_64bit.go
core/rawdb/databases_64bit.go
+1
-1
databases_non64bit.go
core/rawdb/databases_non64bit.go
+1
-1
pebble.go
ethdb/pebble/pebble.go
+1
-1
pebble_test.go
ethdb/pebble/pebble_test.go
+1
-1
No files found.
core/rawdb/databases_64bit.go
View file @
19f74fa3
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
// You should have received a copy of the GNU Lesser General Public License
// 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/>
// 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
package
rawdb
...
...
core/rawdb/databases_non64bit.go
View file @
19f74fa3
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
// You should have received a copy of the GNU Lesser General Public License
// 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/>.
// 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
package
rawdb
...
...
ethdb/pebble/pebble.go
View file @
19f74fa3
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
// You should have received a copy of the GNU Lesser General Public License
// 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/>.
// 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 implements the key-value database layer based on pebble.
package
pebble
package
pebble
...
...
ethdb/pebble/pebble_test.go
View file @
19f74fa3
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
// You should have received a copy of the GNU Lesser General Public License
// 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/>.
// 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
package
pebble
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment