gllvm/ians-notes.txt

34 lines
522 B
Plaintext
Raw Normal View History

2018-02-06 00:23:04 +01:00
To edit the code locally use the repository here:
~/go/src/github.com/SRI-CSL/gllvm
Then do:
go install github.com/SRI-CSL/gllvm/cmd/...
2018-02-06 01:36:09 +01:00
To format for the badge:
2019-10-22 19:53:26 +02:00
gofmt -s -w shared/*.go tests/*.go cmd/*/*.go
2018-02-06 01:36:09 +01:00
2018-04-18 18:13:32 +02:00
For linting:
https://github.com/alecthomas/gometalinter
2019-06-12 15:47:57 +02:00
brew tap alecthomas/homebrew-tap
brew install gometalinter
gometalinter ./...
2018-05-14 15:25:08 +02:00
For keeping up with the Jones:
clang -cc1 --help
https://clang.llvm.org/docs/ClangCommandLineReference.html
2019-10-20 22:42:26 +02:00
For fretting about race conditions:
go build -race cmd