Slide 14
Slide 14 text
Go command
amd64.v2
などのアーキテクチャフィーチャービルドタグが追加
各アーキテクチャに対して、より細かいレベルでファイルをビルド
に含めるかどうか選択可能になった
go help buildconstraint
の内容 (
抜粋)
The defined architecture feature build tags are:
- For GOARCH=386, GO386=387 and GO386=sse2
set the 386.387 and 386.sse2 build tags, respectively.
- For GOARCH=amd64, GOAMD64=v1, v2, and v3
correspond to the amd64.v1, amd64.v2, and amd64.v3 feature build tags.
- For GOARCH=arm, GOARM=5, 6, and 7
correspond to the arm.5, arm.6, and arm.7 feature build tags.
...