good morning!!!!
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
Erigon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
a
Erigon
Commits
5125c82c
Unverified
Commit
5125c82c
authored
3 years ago
by
Alex Sharov
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
add git submodules set to erigon build (#3154)
* save * save
parent
4cebe039
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Makefile
+4
-2
4 additions, 2 deletions
Makefile
with
4 additions
and
2 deletions
Makefile
+
4
−
2
View file @
5125c82c
...
...
@@ -5,7 +5,7 @@ GOTEST = GODEBUG=cgocheck=0 $(GO) test ./... -p 2
GIT_COMMIT
?=
$(
shell git rev-list
-1
HEAD
)
GIT_BRANCH
?=
$(
shell git rev-parse
--abbrev-ref
HEAD
)
GIT_TAG
?=
$(
shell git describe
--tags
`
git rev-list
--tags
=
"v*"
--max-count
=
1
`
)
GOBUILD
=
env
GO111MODULE
=
on
$(
GO
)
build
-trimpath
-ldflags
"-X github.com/ledgerwatch/erigon/params.GitCommit=
${
GIT_COMMIT
}
-X github.com/ledgerwatch/erigon/params.GitBranch=
${
GIT_BRANCH
}
-X github.com/ledgerwatch/erigon/params.GitTag=
${
GIT_TAG
}
"
GOBUILD
=
$(
GO
)
build
-trimpath
-ldflags
"-X github.com/ledgerwatch/erigon/params.GitCommit=
${
GIT_COMMIT
}
-X github.com/ledgerwatch/erigon/params.GitBranch=
${
GIT_BRANCH
}
-X github.com/ledgerwatch/erigon/params.GitTag=
${
GIT_TAG
}
"
GO_DBG_BUILD
=
$(
GO
)
build
-trimpath
-tags
=
debug
-ldflags
"-X github.com/ledgerwatch/erigon/params.GitCommit=
${
GIT_COMMIT
}
-X github.com/ledgerwatch/erigon/params.GitBranch=
${
GIT_BRANCH
}
-X github.com/ledgerwatch/erigon/params.GitTag=
${
GIT_TAG
}
"
-gcflags
=
all
=
"-N -l"
# see delve docs
GO_MAJOR_VERSION
=
$(
shell
$(
GO
)
version |
cut
-c
14- |
cut
-d
' '
-f1
|
cut
-d
'.'
-f1
)
...
...
@@ -39,6 +39,7 @@ geth: erigon
erigon
:
go-version
@
echo
"Building Erigon"
rm
-f
$(
GOBIN
)
/tg
# Remove old binary to prevent confusion where users still use it because of the scripts
git submodule update
--init
--recursive
--force
$(
GOBUILD
)
-o
$(
GOBIN
)
/erigon ./cmd/erigon
@
echo
"Done building."
@
echo
"Run
\"
$(
GOBIN
)
/erigon
\"
to launch Erigon."
...
...
@@ -96,6 +97,7 @@ evm:
@
echo
"Run
\"
$(
GOBIN
)
/evm
\"
to run EVM"
downloader
:
git submodule update
--init
--recursive
--force
$(
GOBUILD
)
-o
$(
GOBIN
)
/downloader ./cmd/downloader
@
echo
"Done building."
@
echo
"Run
\"
$(
GOBIN
)
/downloader
\"
to download and seed snapshots."
...
...
@@ -138,7 +140,7 @@ lintci-deps:
curl
-sSfL
https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh
-s
--
-b
./build/bin v1.42.1
clean
:
env
GO111MODULE
=
on
go clean
-cache
go clean
-cache
rm
-fr
build/
*
cd
libmdbx/
&&
make clean
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment