Open amirhoseinsh opened 3 weeks ago
I'm encountering a build error while trying to compile the op-node component of the Optimism project. The following error message appears during the make process:
op-node
make
link: github.com/fjl/memsize: invalid reference to runtime.stopTheWorld make[1]: *** [Makefile:12: op-node] Error 1
git clone https://github.com/ethereum-optimism/optimism.git
cd optimism
make op-node op-batcher op-proposer
The build should complete without errors, and the op-node binary should be created successfully.
I have tried the following troubleshooting steps:
go get -u ./...
go clean -modcache
If anyone has encountered this issue before or can provide guidance on resolving it, your assistance would be greatly appreciated.
check this out: https://github.com/ethereum/go-ethereum/issues/30100
Description
I'm encountering a build error while trying to compile the
op-node
component of the Optimism project. The following error message appears during themake
process:Steps to Reproduce
Expected Behavior
The build should complete without errors, and the
op-node
binary should be created successfully.Environment
Additional Information
I have tried the following troubleshooting steps:
go get -u ./...
.go clean -modcache
.Suggested Resolution
If anyone has encountered this issue before or can provide guidance on resolving it, your assistance would be greatly appreciated.