Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | build: add CI scripts for windows | Felix Lange | 2016-05-08 | 2 | -0/+41 |
| | |||||
* | build: tweak update-license.go | Felix Lange | 2016-04-15 | 1 | -6/+16 |
| | |||||
* | all: Add GPU mining, disabled by default | Gustav Simonsson | 2015-10-07 | 1 | -0/+4 |
| | |||||
* | core, trie: new trie | Felix Lange | 2015-09-23 | 1 | -1/+2 |
| | |||||
* | build: avoid -X separator warning with Go >= 1.5 | Felix Lange | 2015-08-27 | 1 | -1/+6 |
| | |||||
* | Codecov integration | Taylor Gerring | 2015-08-19 | 1 | -22/+11 |
| | |||||
* | all: fix license headers one more time | Felix Lange | 2015-07-24 | 1 | -1/+1 |
| | | | | I forgot to update one instance of "go-ethereum" in commit 3f047be5a. | ||||
* | all: update license headers to distiguish GPL/LGPL | Felix Lange | 2015-07-23 | 1 | -8/+16 |
| | | | | | All code outside of cmd/ is licensed as LGPL. The headers now reflect this by calling the whole work "the go-ethereum library". | ||||
* | crypto: fix license of curve.go | Felix Lange | 2015-07-23 | 1 | -0/+1 |
| | | | | | crypto/curve.go is not our code and has its own license. This commit excludes it in update-license.go and removes our GPL header. | ||||
* | all: add some godoc synopsis comments | Felix Lange | 2015-07-07 | 1 | -0/+1 |
| | |||||
* | build: change license regexp for // comments | Felix Lange | 2015-07-07 | 1 | -1/+1 |
| | |||||
* | build: new update-license.go | Felix Lange | 2015-07-07 | 1 | -0/+346 |
| | | | | | | | This version is less clever. All names are listed in a single file, AUTHORS. All source files have the same header. This is an improvement over the previous version, which attempted to list copyright holders in each source file. | ||||
* | Build error fixes | Taylor Gerring | 2015-06-19 | 1 | -1/+1 |
| | |||||
* | Use Makefile for Travis tests | Felix Lange | 2015-04-29 | 1 | -0/+26 |
| | |||||
* | Makefile: set main.gitCommit when building | Felix Lange | 2015-04-29 | 1 | -0/+13 |
| | |||||
* | build: run build commands from the fake workspace root | Felix Lange | 2015-04-29 | 1 | -1/+5 |
| | | | | This ensures that compiler error messages contain the correct path. | ||||
* | Makefile: for non-gophers | Felix Lange | 2015-04-19 | 1 | -0/+28 |
Many people need or want to build go-ethereum from the git repository, mostly to stay up to date with recent changes. We cannot expect that people without Go experience grok the Go workspace concept. With the Makefile, building from github requires only three steps (provided that a Go toolchain is installed): - git clone https://github.com/ethereum/go-ethereum - ... install C libraries (libgmp, etc.) ... - make |