Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cmd/compile: unknown ARM relocation type 7 #38020

Closed
lucianboldu opened this issue Mar 23, 2020 · 26 comments
Closed

cmd/compile: unknown ARM relocation type 7 #38020

lucianboldu opened this issue Mar 23, 2020 · 26 comments
Labels
FrozenDueToAge NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one. WaitingForInfo Issue is not actionable because of missing required information, which needs to be provided.
Milestone

Comments

@lucianboldu
Copy link

lucianboldu commented Mar 23, 2020

What version of Go are you using (go version)?

$ go version go1.14 darwin/amd64

Does this issue reproduce with the latest release?

Yes

What operating system and processor architecture are you using (go env)?

go env Output
$ go env

GO111MODULE="on"
GOARCH="amd64"
GOBIN=""
GOCACHE="/Users/work/Library/Caches/go-build"
GOENV="/Users/work/Library/Application Support/go/env"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOINSECURE=""
GONOPROXY=""
GONOSUMDB=""
GOOS="darwin"
GOPATH="/Users/work/Workspace/GO"
GOPRIVATE=""
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/usr/local/go"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/usr/local/go/pkg/tool/darwin_amd64"
GCCGO="gccgo"
AR="ar"
CC="clang"
CXX="clang++"
CGO_ENABLED="1"
GOMOD="/dev/null"
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/pn/q3538lx9107cgpdvj95xzd2m0000gn/T/go-build264931963=/tmp/go-build -gno-record-gcc-switches -fno-common"

What did you do?

I tried to build an ARM version from a project made with version go1.11. In go1.11 everything worked well.Until i moved to go1.14 i released 3 ARM versions compiled with go1.11.

What did you expect to see?

An compiled ARM version 6 of my project build with command:
GOOS=linux GOARCH=arm GOARM=6 go build -o out/release/linux/arm/

What did you see instead?

I receive this error when i run the command below:
GOOS=linux GOARCH=arm GOARM=6 go build -o out/release/linux/arm/
/Users/work/Library/Caches/go-build/f1/f1abdf46b4e5bb946645d1d2602052a096e3abf0af23ba23a1f90dd443051323-d(resource.syso): main(.rsrc)<153>: unknown ARM relocation type 7

This exact error i received with every go version lower than 1.14 until 1.11.

@andybons
Copy link
Member

@randall77

@andybons andybons changed the title Unknown ARM relocation type 7 cmd/compile: unknown ARM relocation type 7 Mar 23, 2020
@andybons andybons added the NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one. label Mar 23, 2020
@andybons andybons added this to the Unplanned milestone Mar 23, 2020
@randall77
Copy link
Contributor

Can you tell us more about the program you're compiling?
Can you share the source so we can try it ourselves?
Does it use cgo?

The particular error you're seeing is strange. There is no relocation type 7 in our codebase.
Maybe that relocation is generated by the C compiler.
Maybe this error is just a symptom of an object file format incompatibility. I could imagine this happening if different Go versions were fighting with one another (e.g. a 1.14 compiler and a 1.11 linker). You might want to try uninstalling the older Go versions if you have those around and/or making sure GOROOT is not set.

@randall77 randall77 added the WaitingForInfo Issue is not actionable because of missing required information, which needs to be provided. label Mar 23, 2020
@randall77
Copy link
Contributor

@jordanrh1 You added the IMAGE_REL_ARM_* constants in Go 1.12 in CL 125648. Do you have any idea what might be happening here?

@lucianboldu
Copy link
Author

Hello, my project is commercial and cannot share the source code, the go mod looks like this:

require (
github.com/gofrs/flock v0.7.1
github.com/tarm/serial v0.0.0-20180830185346-98f6abe2eb07
golang.org/x/sys v0.0.0-20200321134203-328b4cd54aae // indirect
gopkg.in/antage/eventsource.v1 v1.0.0-20150318155416-803f4c5af225
)

it's a project who use serial library to send commands over the serial port. I think what you say about the different versions of Go compiler with another version of linker makes sense and i will try it immediately. I will try to reinstall everything go related.
I'll come back with an answer as soon as possible.
Thank you for your answer!

@randall77
Copy link
Contributor

The serial package does use cgo, so it's possible the C toolchain is involved somehow.

@ianlancetaylor
Copy link
Contributor

I'm perplexed. The error message seems to be coming from cmd/link/internal/loadpe/ldpe.go, but we should not be running that code on an ELF system. It's almost as though a PE object file snuck into the link somehow. Am I missing something?

@lucianboldu
Copy link
Author

Hello again,
i reinstall go 14.1 and i receive the same error:

GOOS=linux GOARCH=arm GOARM=6 go build -o out/release/linux/arm/name
/Users/work/Library/Caches/go-build/80/805a0c93e7286a7230a1455a581fb55df5e46a55bdcd1249153adfc20db47f7c-d(resource.syso): main(.rsrc)<153>: unknown ARM relocation type 7

After i received this error i deleted the entire directory /Users/work/Library/Caches/go-build/
and try again. I receive the same error:

GOOS=linux GOARCH=arm GOARM=6 go build -o out/release/linux/arm/name
/var/folders/pn/q3538lx9107cgpdvj95xzd2m0000gn/T/go-build668718009/b001/_pkg_.a(resource.syso): main(.rsrc)<153>: unknown ARM relocation type 7

I run go on mac os catalina 10.15.3 on a macbook pro 15" with a i9 processor.
right now i receive a warning when i want to compile for macos architecture :

GOOS=darwin GOARCH=amd64 go build -o out/release/mac/64/name
ld: warning: ignoring file /var/folders/pn/q3538lx9107cgpdvj95xzd2m0000gn/T/go-link-083440131/000000.o, building for macOS-x86_64 but attempting to link with file built for unknown-unsupported file format ( 0x4C 0x01 0x01 0x00 0x00 0x00 0x00 0x00 0xF2 0x0C 0x01 0x00 0x01 0x00 0x00 0x00 )

I confirm that the executable generated is running with no problem on my system.

@lucianboldu
Copy link
Author

From go env output i tried to identify the gccgo and clang :

clang --version
Apple clang version 11.0.0 (clang-1100.0.33.17)
Target: x86_64-apple-darwin19.3.0
Thread model: posix
InstalledDir: /Library/Developer/CommandLineTools/usr/bin

I didn't find the gccgo executable.

@randall77
Copy link
Contributor

Can you run go build with the -x option and post the results? That might shed some light on where that file is coming from.

@lucianboldu
Copy link
Author

Of course, below i paste the output:

GOOS=linux GOARCH=arm GOARM=6 go build -x -o out/release/linux/arm/ProjectName

WORK=/var/folders/pn/q3538lx9107cgpdvj95xzd2m0000gn/T/go-build802747127
mkdir -p $WORK/b001/
cat >$WORK/b001/importcfg.link << 'EOF' # internal
packagefile ProjectName=/Users/work/Library/Caches/go-build/80/805a0c93e7286a7230a1455a581fb55df5e46a55bdcd1249153adfc20db47f7c-d
packagefile flag=/Users/work/Library/Caches/go-build/65/6560fe41ebf192e91b35301b555bb1975a3b76e1d124f568cb9c482fdacf104c-d
packagefile fmt=/Users/work/Library/Caches/go-build/dd/ddbd136ad94caa401bc974ef6d32b8995c1db79b096026220e9baaa4870b8bee-d
packagefile gopkg.in/antage/eventsource.v1=/Users/work/Library/Caches/go-build/99/9995958e6b71b8bc0ff18229a0529bad71d88b58b39dd8c964f6e18418214bd9-d
packagefile net/http=/Users/work/Library/Caches/go-build/f9/f9822b18eff128bf188083b10a5639aa0fe28b9405fa8b1c507d68ba66108f57-d
packagefile os=/Users/work/Library/Caches/go-build/d2/d2116f45c643fa5f336fd70b3fc35803c09a18b07f6948821d57c2770448e202-d
packagefile os/signal=/Users/work/Library/Caches/go-build/7f/7ff9cfda95cec2bf18a1816fbe9c5fa75ecd543f0eebaba0640b9fb7373667ad-d
packagefile ProjectName/config=/Users/work/Library/Caches/go-build/81/81b3af95488f88ac8ba59624fc1aa1493eed7d90e8c1e33d2320b0f64d4e2685-d
packagefile ProjectName/service=/Users/work/Library/Caches/go-build/18/181aaa663e1818dc193dc1e808e0bd122834513b5b24b7c91a1bfbcff51b9df9-d
packagefile ProjectName/util=/Users/work/Library/Caches/go-build/a9/a98df8f85475aa39681a5300eb180279236988e5d448a8f68be18ff740297c15-d
packagefile syscall=/Users/work/Library/Caches/go-build/17/1710542e11268f87ae5dd0a3734b68311b7438ff5297d43c8c4f255fcc1c99be-d
packagefile time=/Users/work/Library/Caches/go-build/57/57eaf45e0a7366c05ef2ebbcf33c2e26c188b29255554da5a71740422c456ba0-d
packagefile runtime=/Users/work/Library/Caches/go-build/ac/ac56461e2bb3036be30ba0008ccbbd57ea5fd570b7d24e95ac9f88b508d01d05-d
packagefile math=/Users/work/Library/Caches/go-build/59/595e57d572320f2cf430f75a59800428214e4812d7bc76a00ce6c9c1b702d6f1-d
packagefile errors=/Users/work/Library/Caches/go-build/4c/4cfd79170640275abda929751096b129a2e12e92024d28c67e25ccea28fd659c-d
packagefile io=/Users/work/Library/Caches/go-build/3c/3c579dc6c4357d216f7ce1643814c30fc48093df60032bddfcd5d9fa86371166-d
packagefile reflect=/Users/work/Library/Caches/go-build/eb/eb9a167c95aae74ea6c5ca8f1813b777dec86a09f48aab548295f699c2941280-d
packagefile sort=/Users/work/Library/Caches/go-build/7d/7d0a5d8f62b44b80cb9bc742faccf87ea0253f9e85feac8bbf13a000917d1321-d
packagefile strconv=/Users/work/Library/Caches/go-build/5f/5f7c1eb88e957941576cdb33f26b9c7f382cd3275280717260a9a9cdd77657f3-d
packagefile strings=/Users/work/Library/Caches/go-build/8e/8eff41c4e5923a6132ea63fa6776ff70c59688e765c51d4efa83ee3cb5c893d8-d
packagefile internal/fmtsort=/Users/work/Library/Caches/go-build/7b/7b6a2caf2cc2723cef167ecdf38b7f3a2e643970394a6886b169516166869c5e-d
packagefile sync=/Users/work/Library/Caches/go-build/2a/2a1998df363359545175b1c6485bc76363a01b2d145ceddc5aacad6ba85b749b-d
packagefile unicode/utf8=/Users/work/Library/Caches/go-build/f7/f72633d207e9ab3e0054821ded88eb8a3127d0864256e5cf77e3971cbb914cce-d
packagefile bytes=/Users/work/Library/Caches/go-build/8e/8e0fcfc387947883bc869c7655e297c94e4588d725c9fe015c15693ce52a1156-d
packagefile compress/gzip=/Users/work/Library/Caches/go-build/0b/0b15c193e077176345da0146038a661b436f3def1689a2b1372dcbf5b448ad06-d
packagefile container/list=/Users/work/Library/Caches/go-build/79/7998c1472313eda8ccc9adb7d842c680009475ee852d4df5287704198371646d-d
packagefile log=/Users/work/Library/Caches/go-build/ef/ef34906a59c634e44d9dfbcd44ca2d52a581ee4c879b74d7f9c230a472445513-d
packagefile net=/Users/work/Library/Caches/go-build/61/61e4697c475dedd5571e59e139d5b1a88e4cf035558d61f7a4292ce43779dd37-d
packagefile bufio=/Users/work/Library/Caches/go-build/0a/0abf669d20dd797f6edb17baacf6c874aa1f348354443ca14dc4a8bf3a68abec-d
packagefile context=/Users/work/Library/Caches/go-build/98/98be24f85c272b3d6e3dd6df7a7858e392ecca75fca915126fb9fb7cc3c207ec-d
packagefile crypto/rand=/Users/work/Library/Caches/go-build/0e/0ee4fb6252e708eba6017a49600bbb036f91986adb008d35bf33b267a5f79d5e-d
packagefile crypto/tls=/Users/work/Library/Caches/go-build/e1/e1fafbc12476bec7d1348e973e79c6b462c24fc62faaca09f16ea24c8c9b3df9-d
packagefile encoding/base64=/Users/work/Library/Caches/go-build/15/15a5bdee2f61bb7e5bf7f103ab053bc19db8a2cf3018db45d6ba241bd6659b5f-d
packagefile encoding/binary=/Users/work/Library/Caches/go-build/f2/f231893601cdb0c969522e0d0a00950341c362edc69cfc3320cefa8ae78226f8-d
packagefile vendor/golang.org/x/net/http/httpguts=/Users/work/Library/Caches/go-build/72/722f01331a4861be79b588378481d37650f4f0ce1c8e5f912e444ac180bd3148-d
packagefile vendor/golang.org/x/net/http/httpproxy=/Users/work/Library/Caches/go-build/e6/e69c846e502b1a9b2196b6decfe122c0cf4b19c8c270122a7ad8ca5126581f4e-d
packagefile vendor/golang.org/x/net/http2/hpack=/Users/work/Library/Caches/go-build/f8/f8f608c5b40b15ab0f68abe915107ba028ded57be5780a5dde20a79897eecb46-d
packagefile vendor/golang.org/x/net/idna=/Users/work/Library/Caches/go-build/97/97f4859bd1ccfac5f7528f48bcc93a7901cb830c63706e5329bb4b1b75cdccdf-d
packagefile io/ioutil=/Users/work/Library/Caches/go-build/53/539d2b376727771acfa5d5117771e336c1218cd1f8b04e00ba14250a230e1a5e-d
packagefile math/rand=/Users/work/Library/Caches/go-build/31/31a5b3ceba2e823b8497cc32d4a408bc7de145221b2e05fac81b99f59802a8a0-d
packagefile mime=/Users/work/Library/Caches/go-build/cb/cb811ba3bf3b2f3e0fd73aba1b911509e84aa758a057599a758bf19b90019232-d
packagefile mime/multipart=/Users/work/Library/Caches/go-build/02/02dd96aee0d727e3c7a7b3638ef6b8c44e1bc4157db4579e6ba73cbcf90d8767-d
packagefile net/http/httptrace=/Users/work/Library/Caches/go-build/30/30e9dccd79faea29058f1514d1dfc6fb7146086b0674af851da2d9404c823b43-d
packagefile net/http/internal=/Users/work/Library/Caches/go-build/ed/ed50704dd2f91aa8e5f7d75ec5603420353094051b3ffb122f4b9acdd8af1c19-d
packagefile net/textproto=/Users/work/Library/Caches/go-build/c2/c24bb6a4c0fbb650462e2cbb7bee991762d111edb8e9edcfe8a43fdebc8d8cf7-d
packagefile net/url=/Users/work/Library/Caches/go-build/8f/8fc08a8e2db1465e79b32a6fedb1adea4acd9dc8e2e30d5389fa7c6bf901eba8-d
packagefile path=/Users/work/Library/Caches/go-build/6e/6ec950b2bf1673424aeee103980529f0fafb1d88a4e0b37f3e7e5d3075145baf-d
packagefile path/filepath=/Users/work/Library/Caches/go-build/12/12bc8de66cab78231fa6f186a4ac2a1835c72ab979cd207ff0f56a11d41fcbff-d
packagefile sync/atomic=/Users/work/Library/Caches/go-build/6c/6cbb97998153c100fc9d9e62660047579afcebbc1d99e16ff3cc144bebda90cf-d
packagefile internal/oserror=/Users/work/Library/Caches/go-build/68/68975fd5217e6dfd4e305cf500895afb243204dbe5bad16b2eadc038fcb3a479-d
packagefile internal/poll=/Users/work/Library/Caches/go-build/25/253c0117a7362fc777ece21075d697ef1cb75040e31e4859d64003ae74df1e52-d
packagefile internal/syscall/unix=/Users/work/Library/Caches/go-build/53/53c82ca9901433f8373a780a1896f50052e8c2ac5f2459a19a598ca936c860b4-d
packagefile internal/testlog=/Users/work/Library/Caches/go-build/54/5429d71c2657f515d7b6108005e35930ce14b7c1e8b190970c71c4f3bee83eec-d
packagefile crypto=/Users/work/Library/Caches/go-build/a9/a9560e19ed4df7ece1de6b662b7e2b25cfbfecefc9f7a1082702a07689c1a5da-d
packagefile crypto/rsa=/Users/work/Library/Caches/go-build/01/01e28602d1d72fab3e92380a236c3ac14b101e607b9fa1128b9deec7af94ea96-d
packagefile crypto/sha256=/Users/work/Library/Caches/go-build/56/560f663c009d78f5c1f217ddbeef3450e59fae5c9c1d58a1fe3aa1028fed6002-d
packagefile crypto/x509=/Users/work/Library/Caches/go-build/97/97c8718608c12980f5dfd0e105577ee4102cf77fcf3adce1741a620d95496bcd-d
packagefile encoding/json=/Users/work/Library/Caches/go-build/90/90e0299bd93a1f65f4d78e63e3430b0504b404c49a399511f990f570ae90f1fb-d
packagefile encoding/pem=/Users/work/Library/Caches/go-build/bc/bc0392414e1845576b035371b485ce24ab5cada21bb827c53d0aa62cef4c1c8e-d
packagefile regexp=/Users/work/Library/Caches/go-build/a6/a641da141d557dbdaad22c83bf80b4f2aec2043aa09b76dc850bde404138a55d-d
packagefile github.com/gofrs/flock=/Users/work/Library/Caches/go-build/d3/d35c0eb88372775fafad3966048732a0f4c44d5dbd1690637f98e5aa666f6fe3-d
packagefile ProjectName/event=/Users/work/Library/Caches/go-build/3b/3bb457c19bba46c1034e149c493f9022f02ae5f0369ea31409a51d2adeae668f-d
packagefile ProjectName/protocol=/Users/work/Library/Caches/go-build/b8/b86cfa015f7923e0174da7390f735dc1948ef46446abb47fd887619d02bea1c1-d
packagefile crypto/md5=/Users/work/Library/Caches/go-build/27/278b13dd625a85603ab0c1c7258a77f407e9339a9b829e31a5dcbc33af502505-d
packagefile internal/bytealg=/Users/work/Library/Caches/go-build/c0/c0fa87e0257bb16c8c9aee2f4f7ec3e7847107bcf3aad6dfa635dba976d0caaf-d
packagefile internal/race=/Users/work/Library/Caches/go-build/18/189ca6412812c12f748bed7316cdb277151b846934014477363f8be8b835e542-d
packagefile internal/cpu=/Users/work/Library/Caches/go-build/a5/a5074027df39e2cf50fe8edfb7283244b5c279a7f9c305681c9194cd0e21bf47-d
packagefile runtime/internal/atomic=/Users/work/Library/Caches/go-build/f5/f5e1c6e0df5282aade227e155cd0461a5c6781a9ea1e2f56482f68a97cc0a34e-d
packagefile runtime/internal/math=/Users/work/Library/Caches/go-build/0d/0dbf78bc739597ad76f26bfef5fa56ecc413ed88854627758efccbd7a1516b5d-d
packagefile runtime/internal/sys=/Users/work/Library/Caches/go-build/8d/8d6ca37c58182b4e4992f244c9855392b02fda68efddf598086e96300339e85a-d
packagefile math/bits=/Users/work/Library/Caches/go-build/f0/f07c2a61c8ea4efe115596c9aa5b674019d0fe2ad8c552b66d8097365c8237b1-d
packagefile internal/reflectlite=/Users/work/Library/Caches/go-build/8e/8ede7bf1b79bdee93be89ea2ea5b284665afa65337d7eb72ebcaa8d4432e5e89-d
packagefile unicode=/Users/work/Library/Caches/go-build/f2/f25e88bb342719f638d0294e13dfc0207b64b02f25321109eb809c273d5f0deb-d
packagefile compress/flate=/Users/work/Library/Caches/go-build/e9/e9ed134265d5aef11ae5fa83e79cd1cf8d9ec7a5557d247cc09c40248fa04ca4-d
packagefile hash/crc32=/Users/work/Library/Caches/go-build/b8/b89c618d331c95961cbeabcb117e0ca24856aca7e5ae823607e5761292685a55-d
packagefile vendor/golang.org/x/net/dns/dnsmessage=/Users/work/Library/Caches/go-build/07/074dfc0ff9b65f3eaff0569506930523bd948aa697859494502579901c62e844-d
packagefile internal/nettrace=/Users/work/Library/Caches/go-build/14/140f4d5c19ead4d5ff2cee1ea5fe9002c244009ad1848afb43a8b0214ca3010c-d
packagefile internal/singleflight=/Users/work/Library/Caches/go-build/b3/b39145258bac117e0fc794d5ca5f0648a4c05838c480dc69d2f434860212833a-d
packagefile crypto/aes=/Users/work/Library/Caches/go-build/dd/dd66a522ea170fb34240b6e0b69982dedb526a3494fde7111614a60c4ff20a21-d
packagefile crypto/cipher=/Users/work/Library/Caches/go-build/c7/c70de792c43f3ebb571e6dc51bd8c4f7d46586d675c7fad074470bae2201766b-d
packagefile math/big=/Users/work/Library/Caches/go-build/14/14eee16bf1a391a505ffe67cf34566249892022463763d46fe165e49c7d573c6-d
packagefile crypto/des=/Users/work/Library/Caches/go-build/08/080963bcfd88bb1149b781511f559bcf8453c7ee620034b3b584067087d71605-d
packagefile crypto/ecdsa=/Users/work/Library/Caches/go-build/20/207021c21f682ab07f1fbe7d7870c7c3d3a68c3f99a7115b22240e68a3bed97b-d
packagefile crypto/ed25519=/Users/work/Library/Caches/go-build/25/25c4c33476a77915297ff36b398ce91fb39d09061cafb84c024202775b6f6785-d
packagefile crypto/elliptic=/Users/work/Library/Caches/go-build/36/362cdaa542f29bc764375a8577ef8bae1846ff3a7335035bb9054849b792c531-d
packagefile crypto/hmac=/Users/work/Library/Caches/go-build/9c/9c35396d4d3d39a8db0d3a78eec5fd4f0a5b8f1094040a28eef9e78112cc7e86-d
packagefile crypto/rc4=/Users/work/Library/Caches/go-build/c4/c4459523ef5a63fb782152067d7031747affc977daa8b8b9c56b0a7f74730e18-d
packagefile crypto/sha1=/Users/work/Library/Caches/go-build/dc/dcf50176f065a65b03fd321060cc23caf958d6b0aeab5899293a2ccc5f961e34-d
packagefile crypto/sha512=/Users/work/Library/Caches/go-build/e9/e9c7508977fca712b7cc8f68ee4371be31a2ea889dcbd2c57059f9c2c8eff92e-d
packagefile crypto/subtle=/Users/work/Library/Caches/go-build/33/33dd1d9ed4c51e168b2c241ffa305766337dc622db78146b17e6288a0250265b-d
packagefile encoding/asn1=/Users/work/Library/Caches/go-build/e5/e515ae1e581aa1cf9b7b0338a0ba44fca3887e71f30e56532f1e1860d92765e6-d
packagefile vendor/golang.org/x/crypto/chacha20poly1305=/Users/work/Library/Caches/go-build/74/741648d9d639e003c1bfe390d4823d0e3dc0e3f4d4c5a1e37d726dd8617f991f-d
packagefile vendor/golang.org/x/crypto/cryptobyte=/Users/work/Library/Caches/go-build/89/89c38da9026e4904aa4420692e6cc1fb578b6018a8001343b4519e0be4cb2c2e-d
packagefile vendor/golang.org/x/crypto/curve25519=/Users/work/Library/Caches/go-build/44/446f944e92cb1820e5e5306466ddcb0345dd987251cc800ce336924927e8ae87-d
packagefile vendor/golang.org/x/crypto/hkdf=/Users/work/Library/Caches/go-build/e7/e76865c130b3f00ac9746322494f1c8a99a7a6d0a15711a242520819fe28a58a-d
packagefile hash=/Users/work/Library/Caches/go-build/df/df2237b2b5c2fbb96168dad3ba18bc04f0287a18eda687b5b31a0dce64f2b765-d
packagefile vendor/golang.org/x/text/secure/bidirule=/Users/work/Library/Caches/go-build/e6/e6e5603393a9fa912bf25646998f0d8915cb8a17a38edf8983f5c65f1f075836-d
packagefile vendor/golang.org/x/text/unicode/bidi=/Users/work/Library/Caches/go-build/90/90bfe688bcaa5e71f796ac519bffbde72e7d2df878f63c1d4e358cf84323f875-d
packagefile vendor/golang.org/x/text/unicode/norm=/Users/work/Library/Caches/go-build/c4/c4f9d6525793a4e1829476e64d8fbbb009b95cd54177e257ba479c1fcd078b11-d
packagefile mime/quotedprintable=/Users/work/Library/Caches/go-build/1f/1f01a870e1563c46ab1bca901925016a02058c92f3dc5fefabf11ec2c8e1e4fe-d
packagefile crypto/internal/randutil=/Users/work/Library/Caches/go-build/16/160bc70f6456b7600a9e02e9caaafceaf5e6fdd9d325772d2212a94255dd37ec-d
packagefile crypto/dsa=/Users/work/Library/Caches/go-build/06/063c6c0fb034dcf3dd3d6f17f54352383c19aef2e4ea71c8f7582e688d9f4abb-d
packagefile crypto/x509/pkix=/Users/work/Library/Caches/go-build/db/db5e885974d51040d5ffb9b46139901a05ec053ec3c322226b5981b7d057f0fe-d
packagefile encoding/hex=/Users/work/Library/Caches/go-build/c5/c521c17f4dc6cbf5c25119d9dc0d19881a74393d05fc93d88148eaa8cac4b346-d
packagefile vendor/golang.org/x/crypto/cryptobyte/asn1=/Users/work/Library/Caches/go-build/2f/2f63342de4c07bbb6038cec07ea6d5857fa925f023d260752a940686b905844c-d
packagefile encoding=/Users/work/Library/Caches/go-build/9b/9b9823976e30943607386390fcd7f4a6a26ca03db067892edf5ffb4d5697255c-d
packagefile unicode/utf16=/Users/work/Library/Caches/go-build/2d/2d7189f8e6b06df86364d4f6c21937f8eb912f7d07a367e33389cadfaa216418-d
packagefile regexp/syntax=/Users/work/Library/Caches/go-build/47/47db79a775bd4d5221638a63ade1df461e30422eb0ac6adb9a5652fde8251a7a-d
packagefile github.com/tarm/serial=/Users/work/Library/Caches/go-build/f8/f852f5176acc7471821e8c347453d98409cbc806850d860cdc95553b77571aa9-d
packagefile crypto/internal/subtle=/Users/work/Library/Caches/go-build/1b/1bcbb74d89a6d5753cfba513d78fcd1e2a175a054afc9dc5398ba8de30960a6e-d
packagefile crypto/ed25519/internal/edwards25519=/Users/work/Library/Caches/go-build/de/deb3b60d0ba46ca8224448dbe1abac1d594fd2cb1108509b5113bc225c9403f8-d
packagefile vendor/golang.org/x/crypto/chacha20=/Users/work/Library/Caches/go-build/b1/b16cf3b92a89b8e4b6c9afdfa4c256f07a870e4476a0e36733c9ac8f46036ce7-d
packagefile vendor/golang.org/x/crypto/internal/subtle=/Users/work/Library/Caches/go-build/1a/1aeb72fddf147506b26df1badc02ccd16af11b416d8bdb87cd0950061f556640-d
packagefile vendor/golang.org/x/crypto/poly1305=/Users/work/Library/Caches/go-build/d0/d033ed7a4df7242d2bf5b1b44a96a34d9a3548418ace9aa8b48a1dd98cfe8c29-d
packagefile vendor/golang.org/x/text/transform=/Users/work/Library/Caches/go-build/f9/f9a4ced323e1b6d0c183d81cb27dd52777d3eca8149afc0e5b252c9afb1e80bf-d
packagefile golang.org/x/sys/unix=/Users/work/Library/Caches/go-build/3d/3da36e178ef3248eb113a3d256a59a28b08c7ef8063425638683842d762aa03b-d
EOF
mkdir -p $WORK/b001/exe/
cd .
/usr/local/go/pkg/tool/darwin_amd64/link -o $WORK/b001/exe/a.out -importcfg $WORK/b001/importcfg.link -buildmode=exe -buildid=JmBoUf9JORP965qex2lc/yiUh7S6LaYdqRAG_xLfU/I6sZgLx-kAhB_DQgdR7Q/JmBoUf9JORP965qex2lc -extld=clang /Users/work/Library/Caches/go-build/80/805a0c93e7286a7230a1455a581fb55df5e46a55bdcd1249153adfc20db47f7c-d
ProjectName
/Users/work/Library/Caches/go-build/80/805a0c93e7286a7230a1455a581fb55df5e46a55bdcd1249153adfc20db47f7c-d(resource.syso): main(.rsrc)<153>: unknown ARM relocation type 7

`

@lucianboldu
Copy link
Author

I tried to build the same project from Windows 10 Pro within the same machine with the help of Parallels Desktop 15. I received the same error. On Windows was installed Go 1.11 but i uninstalled and installed the go1.14. Maybe this information is helpful. I will try on a freshly linux instance on parallels desktop tonight.

@randall77
Copy link
Contributor

Hm, that shows only the link step. It's caching all the compilations and the filling of the directories where that file must have been found.

Try -a -x, that should force a full rebuild.

@ianlancetaylor
Copy link
Contributor

It sounds like you are doing a cross-build that includes C code, but you haven't set CC to point to a cross-compiler.

@lucianboldu
Copy link
Author

lucianboldu commented Mar 25, 2020 via email

@ianlancetaylor
Copy link
Contributor

You need to have a C cross-compiler from your host to your target. You need exactly what you would need to build a C program for your target. When you have that, set the CC environment variable to that program when running go build.

@lucianboldu
Copy link
Author

lucianboldu commented Mar 25, 2020 via email

@lucianboldu
Copy link
Author

Hello again,
I verified the go env ouput :

% go env
GO111MODULE=""
GOARCH="amd64"
GOBIN=""
GOCACHE="/Users/lucian/Library/Caches/go-build"
GOENV="/Users/lucian/Library/Application Support/go/env"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOINSECURE=""
GONOPROXY=""
GONOSUMDB=""
GOOS="darwin"
GOPATH="/Users/lucian/Workspace/GO"
GOPRIVATE=""
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/usr/local/go"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/usr/local/go/pkg/tool/darwin_amd64"
GCCGO="gccgo"
AR="ar"
CC="clang"
CXX="clang++"

CGO_ENABLED="1"
GOMOD=""
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/pn/q3538lx9107cgpdvj95xzd2m0000gn/T/go-build338703863=/tmp/go-build -gno-record-gcc-switches -fno-common"

And i already have setup the CC and C++ apps.

% clang --version
Apple clang version 11.0.0 (clang-1100.0.33.17)
Target: x86_64-apple-darwin19.4.0

% clang++ --version
Apple clang version 11.0.0 (clang-1100.0.33.17)
Target: x86_64-apple-darwin19.4.0
Thread model: posix
InstalledDir: /Library/Developer/CommandLineTools/usr/bin

And i want to say that i already build for linux, windows and macos and it's working without problems. The problem is only when i choose ARM on building. If i build for windows, linux it's means that cross compiler is functional.
The only executable that is not present (i think) on my system is GCCGO="gccgo"

% gccgo
zsh: command not found: gccgo

Maybe this is the problem.

@ianlancetaylor
Copy link
Contributor

Missing gccgo is not a problem.

The clang that you are using is not a cross-compiler. As it says: "Target: x86_64-apple-darwin19.4.0". Since you are building for ARM, you need a clang that targets an ARM processor.

@lucianboldu
Copy link
Author

lucianboldu commented Mar 25, 2020 via email

@lucianboldu
Copy link
Author

Hello, I think the problem persists. I use Docker to run an Centos 8 ARM version (the image is located at link: https://hub.docker.com/layers/centos/library/centos/latest/images/sha256-85313b812ad747dd19cf18078795b576cc4ae9cd2ca2ccccd7b5c12722b2effd?context=explore)

I download in image go version 1.14.1 ARM version from this link https://dl.google.com/go/go1.14.1.linux-arm64.tar.gz

# uname -a
Linux 866f04a4a56a 4.19.76-linuxkit #1 SMP Thu Oct 17 19:31:58 UTC 2019 aarch64 aarch64 aarch64 GNU/Linux
# go version
go version go1.14.1 linux/arm64

I run yum update on centos image to be full updated. The go env contained gcc on CC anc CXX variables. I run in this way and i received the same error.

After that i installed clang and updated the go variables to use it.

# clang --version
clang version 8.0.1 (Red Hat 8.0.1-1.module_el8.1.0+215+a01033fb)
Target: aarch64-unknown-linux-gnu
Thread model: posix
InstalledDir: /usr/bin
# go env
GO111MODULE=""
GOARCH="arm64"
GOBIN=""
GOCACHE="/root/.cache/go-build"
GOENV="/root/.config/go/env"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="arm64"
GOHOSTOS="linux"
GOINSECURE=""
GONOPROXY=""
GONOSUMDB=""
GOOS="linux"
GOPATH="/root/go"
GOPRIVATE=""
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/usr/local/go"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/usr/local/go/pkg/tool/linux_arm64"
GCCGO="gccgo"
AR="ar"
CC="clang"
CXX="clang++"
CGO_ENABLED="1"
GOMOD="/mnt/ProjectName/go.mod"
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build933281460=/tmp/go-build -gno-record-gcc-switches"

After that i run again the command with -a -x and i receive the same error. Maybe i do something wrong.

# GOOS=linux GOARCH=arm GOARM=7 go build -a -x -o out/release/linux/arm/ProjectName            
WORK=/tmp/go-build991166710
mkdir -p $WORK/b020/
cat >$WORK/b020/importcfg << 'EOF' # internal
# import config
EOF
cd /usr/local/go/src/internal/race
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b020/_pkg_.a -trimpath "$WORK/b020=>" -p internal/race -std -complete -buildid m7sl73tgn8UWNIeJVJ99/m7sl73tgn8UWNIeJVJ99 -goversion go1.14.1 -D "" -importcfg $WORK/b020/importcfg -pack -c=4 ./doc.go ./norace.go
mkdir -p $WORK/b022/
mkdir -p $WORK/b018/
mkdir -p $WORK/b021/
cat >$WORK/b018/importcfg << 'EOF' # internal
# import config
EOF
cat >$WORK/b022/importcfg << 'EOF' # internal
# import config
EOF
cd /usr/local/go/src/unicode/utf8
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b018/_pkg_.a -trimpath "$WORK/b018=>" -p unicode/utf8 -std -complete -buildid YhDW-XX9l-16knCoz1lC/YhDW-XX9l-16knCoz1lC -goversion go1.14.1 -D "" -importcfg $WORK/b018/importcfg -pack -c=4 ./utf8.go
cd /usr/local/go/src/unicode
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b022/_pkg_.a -trimpath "$WORK/b022=>" -p unicode -std -complete -buildid yLkY8y8gmIvR3MMrcMlN/yLkY8y8gmIvR3MMrcMlN -goversion go1.14.1 -D "" -importcfg $WORK/b022/importcfg -pack -c=4 ./casetables.go ./digit.go ./graphic.go ./letter.go ./tables.go
mkdir -p $WORK/b041/
cat >$WORK/b041/importcfg << 'EOF' # internal
# import config
EOF
cd /usr/local/go/src/container/list
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b041/_pkg_.a -trimpath "$WORK/b041=>" -p container/list -std -complete -buildid 8y1m-Md18XBIE6BwYfW5/8y1m-Md18XBIE6BwYfW5 -goversion go1.14.1 -D "" -importcfg $WORK/b041/importcfg -pack -c=4 ./list.go
cat >$WORK/b021/go_asm.h << 'EOF' # internal
EOF
mkdir -p $WORK/b011/
mkdir -p $WORK/b007/
cd /usr/local/go/src/sync/atomic
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b021=>" -I $WORK/b021/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -gensymabis -o $WORK/b021/symabis ./asm.s
cat >$WORK/b007/importcfg << 'EOF' # internal
# import config
EOF
cd /usr/local/go/src/internal/cpu
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b007/_pkg_.a -trimpath "$WORK/b007=>" -p internal/cpu -std -+ -complete -buildid QgRiKhNh7uwN9zyBOnLs/QgRiKhNh7uwN9zyBOnLs -goversion go1.14.1 -D "" -importcfg $WORK/b007/importcfg -pack -c=4 ./cpu.go ./cpu_arm.go
mkdir -p $WORK/b016/
cat >$WORK/b016/importcfg << 'EOF' # internal
# import config
EOF
cat >$WORK/b011/importcfg << 'EOF' # internal
# import config
EOF
cd /usr/local/go/src/runtime/internal/sys
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b011/_pkg_.a -trimpath "$WORK/b011=>" -p runtime/internal/sys -std -+ -complete -buildid JT3_xQNI0xOTFAqjaPPn/JT3_xQNI0xOTFAqjaPPn -goversion go1.14.1 -D "" -importcfg $WORK/b011/importcfg -pack -c=4 ./arch.go ./arch_arm.go ./intrinsics.go ./intrinsics_common.go ./stubs.go ./sys.go ./zgoarch_arm.go ./zgoos_linux.go ./zversion.go
cd /usr/local/go/src/math/bits
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b016/_pkg_.a -trimpath "$WORK/b016=>" -p math/bits -std -complete -buildid DoonklksnckBvFNqamJV/DoonklksnckBvFNqamJV -goversion go1.14.1 -D "" -importcfg $WORK/b016/importcfg -pack -c=4 ./bits.go ./bits_errors.go ./bits_tables.go
cat >$WORK/b021/importcfg << 'EOF' # internal
# import config
EOF
cd /usr/local/go/src/sync/atomic
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b021/_pkg_.a -trimpath "$WORK/b021=>" -p sync/atomic -std -buildid Uw4joXJrEcNt_-JoFVOw/Uw4joXJrEcNt_-JoFVOw -goversion go1.14.1 -symabis $WORK/b021/symabis -D "" -importcfg $WORK/b021/importcfg -pack -asmhdr $WORK/b021/go_asm.h -c=4 ./doc.go ./value.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b020/_pkg_.a # internal
cp $WORK/b020/_pkg_.a /root/.cache/go-build/0f/0f07f503757900f8ad1e871f71051c0dc64b19db9fb4b20ed4b19df495599f52-d # internal
mkdir -p $WORK/b046/
cat >$WORK/b046/importcfg << 'EOF' # internal
# import config
EOF
cd /usr/local/go/src/internal/nettrace
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b046/_pkg_.a -trimpath "$WORK/b046=>" -p internal/nettrace -std -complete -buildid GAgWWSU8ibgyykrz74Bw/GAgWWSU8ibgyykrz74Bw -goversion go1.14.1 -D "" -importcfg $WORK/b046/importcfg -pack -c=4 ./nettrace.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b011/_pkg_.a # internal
cp $WORK/b011/_pkg_.a /root/.cache/go-build/87/8767131fadfd880c46fc73b87db196412ca770390ec8735eda703773ff46a24e-d # internal
mkdir -p $WORK/b010/
cat >$WORK/b010/importcfg << 'EOF' # internal
# import config
packagefile runtime/internal/sys=$WORK/b011/_pkg_.a
EOF
cd /usr/local/go/src/runtime/internal/math
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b010/_pkg_.a -trimpath "$WORK/b010=>" -p runtime/internal/math -std -+ -complete -buildid kXeu1r9iqDJ2p70u4v5C/kXeu1r9iqDJ2p70u4v5C -goversion go1.14.1 -D "" -importcfg $WORK/b010/importcfg -pack -c=4 ./math.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b041/_pkg_.a # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b018/_pkg_.a # internal
cp $WORK/b041/_pkg_.a /root/.cache/go-build/71/716a1f6b7f2840ac002fdbcd4c8b04f7ceaa0c2ad44a91806f56cd494ca40058-d # internal
mkdir -p $WORK/b053/
cat >$WORK/b053/importcfg << 'EOF' # internal
# import config
EOF
cd /usr/local/go/src/crypto/internal/subtle
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b053/_pkg_.a -trimpath "$WORK/b053=>" -p crypto/internal/subtle -std -complete -buildid UkYmF2bs_2pB2FKolAVJ/UkYmF2bs_2pB2FKolAVJ -goversion go1.14.1 -D "" -importcfg $WORK/b053/importcfg -pack -c=4 ./aliasing.go
cp $WORK/b018/_pkg_.a /root/.cache/go-build/b1/b14ca3e207d118448151e506c84870200952a10a624ec8fab4a5fc4527708f2e-d # internal
mkdir -p $WORK/b054/
cat >$WORK/b054/importcfg << 'EOF' # internal
# import config
EOF
cd /usr/local/go/src/crypto/subtle
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b054/_pkg_.a -trimpath "$WORK/b054=>" -p crypto/subtle -std -complete -buildid i98nSRBFu05OQdjQ1qLK/i98nSRBFu05OQdjQ1qLK -goversion go1.14.1 -D "" -importcfg $WORK/b054/importcfg -pack -c=4 ./constant_time.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b046/_pkg_.a # internal
cp $WORK/b046/_pkg_.a /root/.cache/go-build/31/31093e4cac0131ee946df8e38e3e77a47290467b590b400a5eb40f172d20bdaf-d # internal
mkdir -p $WORK/b064/
cat >$WORK/b064/importcfg << 'EOF' # internal
# import config
EOF
cd /usr/local/go/src/unicode/utf16
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b064/_pkg_.a -trimpath "$WORK/b064=>" -p unicode/utf16 -std -complete -buildid SDbTIp-9JQb52JAR5lHd/SDbTIp-9JQb52JAR5lHd -goversion go1.14.1 -D "" -importcfg $WORK/b064/importcfg -pack -c=4 ./utf16.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b007/_pkg_.a # internal
cp $WORK/b007/_pkg_.a /root/.cache/go-build/2f/2fad1c6a4e97b05c76b68eea95dc672c61e15ba7b11e5fbc1fa49f425f392e65-d # internal
mkdir -p $WORK/b006/
cat >$WORK/b006/go_asm.h << 'EOF' # internal
EOF
cd /usr/local/go/src/sync/atomic
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b021=>" -I $WORK/b021/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -o $WORK/b021/asm.o ./asm.s
cd /usr/local/go/src/internal/bytealg
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b006=>" -I $WORK/b006/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -gensymabis -o $WORK/b006/symabis ./compare_arm.s ./count_arm.s ./equal_arm.s ./indexbyte_arm.s
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b016/_pkg_.a # internal
cp $WORK/b016/_pkg_.a /root/.cache/go-build/09/09503ca3e656fe457bbee0aefbd6adb09dfb31de8fefa70d6f0a39ed977076d8-d # internal
mkdir -p $WORK/b009/
cat >$WORK/b009/go_asm.h << 'EOF' # internal
EOF
cd /usr/local/go/src/runtime/internal/atomic
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b009=>" -I $WORK/b009/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -gensymabis -o $WORK/b009/symabis ./asm_arm.s ./sys_linux_arm.s
cat >$WORK/b006/importcfg << 'EOF' # internal
# import config
packagefile internal/cpu=$WORK/b007/_pkg_.a
EOF
cd /usr/local/go/src/internal/bytealg
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b006/_pkg_.a -trimpath "$WORK/b006=>" -p internal/bytealg -std -+ -buildid Xjy0O6HBfAwSK6_cjwjW/Xjy0O6HBfAwSK6_cjwjW -goversion go1.14.1 -symabis $WORK/b006/symabis -D "" -importcfg $WORK/b006/importcfg -pack -asmhdr $WORK/b006/go_asm.h -c=4 ./bytealg.go ./compare_native.go ./count_native.go ./equal_generic.go ./equal_native.go ./index_generic.go ./indexbyte_native.go
cd /usr/local/go/src/sync/atomic
/usr/local/go/pkg/tool/linux_arm64/pack r $WORK/b021/_pkg_.a $WORK/b021/asm.o # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b021/_pkg_.a # internal
cp $WORK/b021/_pkg_.a /root/.cache/go-build/b0/b016ee76a5b631c284cd83348008a532a051b46ec105708076afe7199c410215-d # internal
mkdir -p $WORK/b015/
cat >$WORK/b015/go_asm.h << 'EOF' # internal
EOF
cd /usr/local/go/src/math
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b015=>" -I $WORK/b015/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -gensymabis -o $WORK/b015/symabis ./sqrt_arm.s ./stubs_arm.s
cat >$WORK/b009/importcfg << 'EOF' # internal
# import config
packagefile internal/cpu=$WORK/b007/_pkg_.a
EOF
cd /usr/local/go/src/runtime/internal/atomic
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b009/_pkg_.a -trimpath "$WORK/b009=>" -p runtime/internal/atomic -std -+ -buildid mPEdOVBiP7YPds8s7Ucm/mPEdOVBiP7YPds8s7Ucm -goversion go1.14.1 -symabis $WORK/b009/symabis -D "" -importcfg $WORK/b009/importcfg -pack -asmhdr $WORK/b009/go_asm.h -c=4 ./atomic_arm.go ./stubs.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b010/_pkg_.a # internal
cp $WORK/b010/_pkg_.a /root/.cache/go-build/a6/a67228ae57b2eeb6bf6f965c6ee2f6066d67d32761875f7d9c6154d8d49a2f39-d # internal
mkdir -p $WORK/b031/
cat >$WORK/b031/importcfg << 'EOF' # internal
# import config
packagefile sync/atomic=$WORK/b021/_pkg_.a
EOF
cd /usr/local/go/src/internal/testlog
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b031/_pkg_.a -trimpath "$WORK/b031=>" -p internal/testlog -std -complete -buildid fP8lfGlPxL6qkPp3sewn/fP8lfGlPxL6qkPp3sewn -goversion go1.14.1 -D "" -importcfg $WORK/b031/importcfg -pack -c=4 ./log.go
cat >$WORK/b015/importcfg << 'EOF' # internal
# import config
packagefile math/bits=$WORK/b016/_pkg_.a
EOF
cd /usr/local/go/src/math
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b015/_pkg_.a -trimpath "$WORK/b015=>" -p math -std -buildid DSvs12wd0-j7T32ABkYo/DSvs12wd0-j7T32ABkYo -goversion go1.14.1 -symabis $WORK/b015/symabis -D "" -importcfg $WORK/b015/importcfg -pack -asmhdr $WORK/b015/go_asm.h -c=4 ./abs.go ./acosh.go ./asin.go ./asinh.go ./atan.go ./atan2.go ./atanh.go ./bits.go ./cbrt.go ./const.go ./copysign.go ./dim.go ./erf.go ./erfinv.go ./exp.go ./expm1.go ./floor.go ./fma.go ./frexp.go ./gamma.go ./hypot.go ./j0.go ./j1.go ./jn.go ./ldexp.go ./lgamma.go ./log.go ./log10.go ./log1p.go ./logb.go ./mod.go ./modf.go ./nextafter.go ./pow.go ./pow10.go ./remainder.go ./signbit.go ./sin.go ./sincos.go ./sinh.go ./sqrt.go ./tan.go ./tanh.go ./trig_reduce.go ./unsafe.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b053/_pkg_.a # internal
cp $WORK/b053/_pkg_.a /root/.cache/go-build/c0/c0932f640a7d68e7b1896a0544eaeed598ee3cbbd49827858d9818883c04c39c-d # internal
mkdir -p $WORK/b080/
cat >$WORK/b080/importcfg << 'EOF' # internal
# import config
EOF
cd /usr/local/go/src/vendor/golang.org/x/crypto/cryptobyte/asn1
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b080/_pkg_.a -trimpath "$WORK/b080=>" -p vendor/golang.org/x/crypto/cryptobyte/asn1 -std -complete -buildid JDQaMELgThPIUApXsrig/JDQaMELgThPIUApXsrig -goversion go1.14.1 -D "" -importcfg $WORK/b080/importcfg -pack -c=4 ./asn1.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b054/_pkg_.a # internal
cp $WORK/b054/_pkg_.a /root/.cache/go-build/d7/d720bd0a79d3b758ebe77b5384635cacd9a4087a97e2ea893cfe2f6e73cef574-d # internal
mkdir -p $WORK/b086/
cat >$WORK/b086/importcfg << 'EOF' # internal
# import config
EOF
cd /usr/local/go/src/vendor/golang.org/x/crypto/internal/subtle
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b086/_pkg_.a -trimpath "$WORK/b086=>" -p vendor/golang.org/x/crypto/internal/subtle -std -complete -buildid OzaTjQouj0mOmXPf9OzM/OzaTjQouj0mOmXPf9OzM -goversion go1.14.1 -D "" -importcfg $WORK/b086/importcfg -pack -c=4 ./aliasing.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b064/_pkg_.a # internal
cp $WORK/b064/_pkg_.a /root/.cache/go-build/f2/f2273e81f6b7359a011d3b7345d7b9dfbffe679d6b22445e9cb9b253d7789b36-d # internal
mkdir -p $WORK/b108/
cat >$WORK/b108/importcfg << 'EOF' # internal
# import config
EOF
cd /usr/local/go/src/encoding
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b108/_pkg_.a -trimpath "$WORK/b108=>" -p encoding -std -complete -buildid rnq7TS7gGBVNd7EdKyxD/rnq7TS7gGBVNd7EdKyxD -goversion go1.14.1 -D "" -importcfg $WORK/b108/importcfg -pack -c=4 ./encoding.go
cd /usr/local/go/src/internal/bytealg
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b006=>" -I $WORK/b006/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -o $WORK/b006/compare_arm.o ./compare_arm.s
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b022/_pkg_.a # internal
cp $WORK/b022/_pkg_.a /root/.cache/go-build/f1/f197f7b53009e095e0ba5ec67cbe7cf26082812bc21551b08ac9e5bdfef47c24-d # internal
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b006=>" -I $WORK/b006/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -o $WORK/b006/count_arm.o ./count_arm.s
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b031/_pkg_.a # internal
cp $WORK/b031/_pkg_.a /root/.cache/go-build/fe/fef0b7ddd1aef654ba5102d34d56db9c9d3d17bc08a4ded6d2e6c24aef5be124-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b080/_pkg_.a # internal
cp $WORK/b080/_pkg_.a /root/.cache/go-build/b5/b5d54da89bc432cbdfba6f0d540fa272d77b9a2bddbc9de285c88ceb112b8519-d # internal
cd /usr/local/go/src/runtime/internal/atomic
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b009=>" -I $WORK/b009/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -o $WORK/b009/asm_arm.o ./asm_arm.s
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b108/_pkg_.a # internal
cp $WORK/b108/_pkg_.a /root/.cache/go-build/99/99959b1632a5288a80de482c0129867393569c603930fc3a590b50dfb08456df-d # internal
cd /usr/local/go/src/internal/bytealg
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b006=>" -I $WORK/b006/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -o $WORK/b006/equal_arm.o ./equal_arm.s
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b086/_pkg_.a # internal
cp $WORK/b086/_pkg_.a /root/.cache/go-build/30/30cb7f6b02dc6c0781997088bff4e46fe08feb6599d0122b5315d19959378896-d # internal
cd /usr/local/go/src/runtime/internal/atomic
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b009=>" -I $WORK/b009/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -o $WORK/b009/sys_linux_arm.o ./sys_linux_arm.s
cd /usr/local/go/src/internal/bytealg
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b006=>" -I $WORK/b006/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -o $WORK/b006/indexbyte_arm.o ./indexbyte_arm.s
cd /usr/local/go/src/runtime/internal/atomic
/usr/local/go/pkg/tool/linux_arm64/pack r $WORK/b009/_pkg_.a $WORK/b009/asm_arm.o $WORK/b009/sys_linux_arm.o # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b009/_pkg_.a # internal
cp $WORK/b009/_pkg_.a /root/.cache/go-build/25/25994ec3034021a34ea8055eac01223f075d5949a21ef9e80af8e9bb3e24f604-d # internal
cd /usr/local/go/src/internal/bytealg
/usr/local/go/pkg/tool/linux_arm64/pack r $WORK/b006/_pkg_.a $WORK/b006/compare_arm.o $WORK/b006/count_arm.o $WORK/b006/equal_arm.o $WORK/b006/indexbyte_arm.o # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b006/_pkg_.a # internal
cp $WORK/b006/_pkg_.a /root/.cache/go-build/5a/5ab928048a62d84c8501b0806a66010b6bda0916c7516163d8c6184eda328bbe-d # internal
mkdir -p $WORK/b005/
cat >$WORK/b005/go_asm.h << 'EOF' # internal
EOF
cd /usr/local/go/src/runtime
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b005=>" -I $WORK/b005/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -gensymabis -o $WORK/b005/symabis ./asm.s ./asm_arm.s ./duff_arm.s ./memclr_arm.s ./memmove_arm.s ./preempt_arm.s ./rt0_linux_arm.s ./sys_linux_arm.s ./tls_arm.s ./vlop_arm.s
cat >$WORK/b005/importcfg << 'EOF' # internal
# import config
packagefile internal/bytealg=$WORK/b006/_pkg_.a
packagefile internal/cpu=$WORK/b007/_pkg_.a
packagefile runtime/internal/atomic=$WORK/b009/_pkg_.a
packagefile runtime/internal/math=$WORK/b010/_pkg_.a
packagefile runtime/internal/sys=$WORK/b011/_pkg_.a
EOF
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b005/_pkg_.a -trimpath "$WORK/b005=>" -p runtime -std -+ -buildid 44rSwkR2b0BRkRQ_6jq9/44rSwkR2b0BRkRQ_6jq9 -goversion go1.14.1 -symabis $WORK/b005/symabis -D "" -importcfg $WORK/b005/importcfg -pack -asmhdr $WORK/b005/go_asm.h -c=4 ./alg.go ./atomic_pointer.go ./cgo.go ./cgocall.go ./cgocallback.go ./cgocheck.go ./chan.go ./checkptr.go ./compiler.go ./complex.go ./cpuflags.go ./cpuprof.go ./debug.go ./debuglog.go ./debuglog_off.go ./defs_linux_arm.go ./env_posix.go ./error.go ./extern.go ./fastlog2.go ./fastlog2table.go ./float.go ./hash32.go ./heapdump.go ./iface.go ./lfstack.go ./lfstack_32bit.go ./lock_futex.go ./malloc.go ./map.go ./map_fast32.go ./map_fast64.go ./map_faststr.go ./mbarrier.go ./mbitmap.go ./mcache.go ./mcentral.go ./mem_linux.go ./mfinal.go ./mfixalloc.go ./mgc.go ./mgcmark.go ./mgcscavenge.go ./mgcstack.go ./mgcsweep.go ./mgcsweepbuf.go ./mgcwork.go ./mheap.go ./mmap.go ./mpagealloc.go ./mpagealloc_32bit.go ./mpagecache.go ./mpallocbits.go ./mprof.go ./mranges.go ./msan0.go ./msize.go ./mstats.go ./mwbbuf.go ./nbpipe_pipe2.go ./netpoll.go ./netpoll_epoll.go ./os_linux.go ./os_linux_arm.go ./os_linux_generic.go ./os_nonopenbsd.go ./panic.go ./panic32.go ./plugin.go ./preempt.go ./preempt_nonwindows.go ./print.go ./proc.go ./profbuf.go ./proflabel.go ./race0.go ./rdebug.go ./relax_stub.go ./runtime.go ./runtime1.go ./runtime2.go ./rwmutex.go ./select.go ./sema.go ./sigaction.go ./signal_arm.go ./signal_linux_arm.go ./signal_unix.go ./sigqueue.go ./sigqueue_note.go ./sigtab_linux_generic.go ./sizeclasses.go ./slice.go ./softfloat64.go ./stack.go ./string.go ./stubs.go ./stubs2.go ./stubs3.go ./stubs32.go ./stubs_arm.go ./stubs_linux.go ./symtab.go ./sys_arm.go ./sys_nonppc64x.go ./time.go ./time_nofake.go ./timestub.go ./timestub2.go ./trace.go ./traceback.go ./type.go ./typekind.go ./utf8.go ./vdso_elf32.go ./vdso_linux.go ./vdso_linux_arm.go ./vlrt.go ./write_err.go
cd /usr/local/go/src/math
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b015=>" -I $WORK/b015/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -o $WORK/b015/sqrt_arm.o ./sqrt_arm.s
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b015=>" -I $WORK/b015/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -o $WORK/b015/stubs_arm.o ./stubs_arm.s
/usr/local/go/pkg/tool/linux_arm64/pack r $WORK/b015/_pkg_.a $WORK/b015/sqrt_arm.o $WORK/b015/stubs_arm.o # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b015/_pkg_.a # internal
cp $WORK/b015/_pkg_.a /root/.cache/go-build/b8/b8261c9f4b122b4662f2936ba44fb0fb944586cf8ced22dc5645b0329282d441-d # internal
cd /usr/local/go/src/runtime
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b005=>" -I $WORK/b005/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -o $WORK/b005/asm.o ./asm.s
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b005=>" -I $WORK/b005/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -o $WORK/b005/asm_arm.o ./asm_arm.s
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b005=>" -I $WORK/b005/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -o $WORK/b005/duff_arm.o ./duff_arm.s
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b005=>" -I $WORK/b005/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -o $WORK/b005/memclr_arm.o ./memclr_arm.s
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b005=>" -I $WORK/b005/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -o $WORK/b005/memmove_arm.o ./memmove_arm.s
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b005=>" -I $WORK/b005/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -o $WORK/b005/preempt_arm.o ./preempt_arm.s
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b005=>" -I $WORK/b005/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -o $WORK/b005/rt0_linux_arm.o ./rt0_linux_arm.s
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b005=>" -I $WORK/b005/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -o $WORK/b005/sys_linux_arm.o ./sys_linux_arm.s
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b005=>" -I $WORK/b005/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -o $WORK/b005/tls_arm.o ./tls_arm.s
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b005=>" -I $WORK/b005/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -o $WORK/b005/vlop_arm.o ./vlop_arm.s
/usr/local/go/pkg/tool/linux_arm64/pack r $WORK/b005/_pkg_.a $WORK/b005/asm.o $WORK/b005/asm_arm.o $WORK/b005/duff_arm.o $WORK/b005/memclr_arm.o $WORK/b005/memmove_arm.o $WORK/b005/preempt_arm.o $WORK/b005/rt0_linux_arm.o $WORK/b005/sys_linux_arm.o $WORK/b005/tls_arm.o $WORK/b005/vlop_arm.o # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b005/_pkg_.a # internal
cp $WORK/b005/_pkg_.a /root/.cache/go-build/04/041dbca87e7175fcb9aca098f4e6d335abc258d59027ff6ab24293027e3fa363-d # internal
mkdir -p $WORK/b004/
cat >$WORK/b004/go_asm.h << 'EOF' # internal
EOF
cd /usr/local/go/src/internal/reflectlite
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b004=>" -I $WORK/b004/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -gensymabis -o $WORK/b004/symabis ./asm.s
mkdir -p $WORK/b019/
cat >$WORK/b019/importcfg << 'EOF' # internal
# import config
packagefile internal/race=$WORK/b020/_pkg_.a
packagefile runtime=$WORK/b005/_pkg_.a
packagefile sync/atomic=$WORK/b021/_pkg_.a
EOF
cd /usr/local/go/src/sync
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b019/_pkg_.a -trimpath "$WORK/b019=>" -p sync -std -buildid EMlW6cfgmN-OXQgjRI7r/EMlW6cfgmN-OXQgjRI7r -goversion go1.14.1 -D "" -importcfg $WORK/b019/importcfg -pack -c=4 ./cond.go ./map.go ./mutex.go ./once.go ./pool.go ./poolqueue.go ./runtime.go ./rwmutex.go ./waitgroup.go
cat >$WORK/b004/importcfg << 'EOF' # internal
# import config
packagefile runtime=$WORK/b005/_pkg_.a
EOF
cd /usr/local/go/src/internal/reflectlite
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b004/_pkg_.a -trimpath "$WORK/b004=>" -p internal/reflectlite -std -buildid 9dTKQLIHLLyax61KzSSE/9dTKQLIHLLyax61KzSSE -goversion go1.14.1 -symabis $WORK/b004/symabis -D "" -importcfg $WORK/b004/importcfg -pack -asmhdr $WORK/b004/go_asm.h -c=4 ./swapper.go ./type.go ./value.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b019/_pkg_.a # internal
cp $WORK/b019/_pkg_.a /root/.cache/go-build/76/766c2da2af18dad2fdbb1539e3353aef2bc930a79eb121072907b3d0ba7f6e46-d # internal
mkdir -p $WORK/b047/
cat >$WORK/b047/importcfg << 'EOF' # internal
# import config
packagefile sync=$WORK/b019/_pkg_.a
EOF
cd /usr/local/go/src/internal/singleflight
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b047/_pkg_.a -trimpath "$WORK/b047=>" -p internal/singleflight -std -complete -buildid poB7rUTbu-DG_gMHm7dG/poB7rUTbu-DG_gMHm7dG -goversion go1.14.1 -D "" -importcfg $WORK/b047/importcfg -pack -c=4 ./singleflight.go
mkdir -p $WORK/b048/
cat >$WORK/b048/importcfg << 'EOF' # internal
# import config
packagefile math=$WORK/b015/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
EOF
cd /usr/local/go/src/math/rand
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b048/_pkg_.a -trimpath "$WORK/b048=>" -p math/rand -std -complete -buildid NcA-0agGJEtt32YU1OfR/NcA-0agGJEtt32YU1OfR -goversion go1.14.1 -D "" -importcfg $WORK/b048/importcfg -pack -c=4 ./exp.go ./normal.go ./rand.go ./rng.go ./zipf.go
cd /usr/local/go/src/internal/reflectlite
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b004=>" -I $WORK/b004/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -o $WORK/b004/asm.o ./asm.s
/usr/local/go/pkg/tool/linux_arm64/pack r $WORK/b004/_pkg_.a $WORK/b004/asm.o # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b004/_pkg_.a # internal
cp $WORK/b004/_pkg_.a /root/.cache/go-build/a5/a55e16ea016a8d50ab168109af42f3f42605a4d51ba309abb89127bc7be2039f-d # internal
mkdir -p $WORK/b003/
cat >$WORK/b003/importcfg << 'EOF' # internal
# import config
packagefile internal/reflectlite=$WORK/b004/_pkg_.a
EOF
cd /usr/local/go/src/errors
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b003/_pkg_.a -trimpath "$WORK/b003=>" -p errors -std -complete -buildid WXau8scj_ZpoVzuGUkKM/WXau8scj_ZpoVzuGUkKM -goversion go1.14.1 -D "" -importcfg $WORK/b003/importcfg -pack -c=4 ./errors.go ./wrap.go
mkdir -p $WORK/b023/
cat >$WORK/b023/importcfg << 'EOF' # internal
# import config
packagefile internal/reflectlite=$WORK/b004/_pkg_.a
EOF
cd /usr/local/go/src/sort
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b023/_pkg_.a -trimpath "$WORK/b023=>" -p sort -std -complete -buildid DlpUOjzeCIuCYmMP8str/DlpUOjzeCIuCYmMP8str -goversion go1.14.1 -D "" -importcfg $WORK/b023/importcfg -pack -c=4 ./search.go ./slice.go ./slice_go113.go ./sort.go ./zfuncversion.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b047/_pkg_.a # internal
cp $WORK/b047/_pkg_.a /root/.cache/go-build/f4/f46ae4093f2475c4e1ae4e213babf4eeb10858ee9fceef76757f68e5436509b0-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b048/_pkg_.a # internal
cp $WORK/b048/_pkg_.a /root/.cache/go-build/1c/1cef4ae6ccf1af4c700c13f6d02a862179e8d9c36d1d00c48c47b51ca25b69df-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b003/_pkg_.a # internal
cp $WORK/b003/_pkg_.a /root/.cache/go-build/0d/0d31a0b25b83b60ad17b0cb44b50fa00d473df7fa039063dde8674d27dd83ed8-d # internal
mkdir -p $WORK/b045/
cat >$WORK/b045/importcfg << 'EOF' # internal
# import config
packagefile errors=$WORK/b003/_pkg_.a
EOF
cd /usr/local/go/src/vendor/golang.org/x/net/dns/dnsmessage
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b045/_pkg_.a -trimpath "$WORK/b045=>" -p vendor/golang.org/x/net/dns/dnsmessage -std -complete -buildid V-ws-R1i73mOaPV7tETO/V-ws-R1i73mOaPV7tETO -goversion go1.14.1 -D "" -importcfg $WORK/b045/importcfg -pack -c=4 ./message.go
mkdir -p $WORK/b024/
cat >$WORK/b024/importcfg << 'EOF' # internal
# import config
packagefile errors=$WORK/b003/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
EOF
cd /usr/local/go/src/io
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b024/_pkg_.a -trimpath "$WORK/b024=>" -p io -std -complete -buildid 2G_b11oUjsvMxz_8FDE9/2G_b11oUjsvMxz_8FDE9 -goversion go1.14.1 -D "" -importcfg $WORK/b024/importcfg -pack -c=4 ./io.go ./multi.go ./pipe.go
mkdir -p $WORK/b026/
cat >$WORK/b026/importcfg << 'EOF' # internal
# import config
packagefile errors=$WORK/b003/_pkg_.a
EOF
cd /usr/local/go/src/internal/oserror
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b026/_pkg_.a -trimpath "$WORK/b026=>" -p internal/oserror -std -complete -buildid KQJ1pd47gpCmWXO70gch/KQJ1pd47gpCmWXO70gch -goversion go1.14.1 -D "" -importcfg $WORK/b026/importcfg -pack -c=4 ./errors.go
mkdir -p $WORK/b017/
cat >$WORK/b017/importcfg << 'EOF' # internal
# import config
packagefile errors=$WORK/b003/_pkg_.a
packagefile internal/bytealg=$WORK/b006/_pkg_.a
packagefile math=$WORK/b015/_pkg_.a
packagefile math/bits=$WORK/b016/_pkg_.a
packagefile unicode/utf8=$WORK/b018/_pkg_.a
EOF
cd /usr/local/go/src/strconv
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b017/_pkg_.a -trimpath "$WORK/b017=>" -p strconv -std -complete -buildid xLOd4EeZxFAIVVkHW1Ll/xLOd4EeZxFAIVVkHW1Ll -goversion go1.14.1 -D "" -importcfg $WORK/b017/importcfg -pack -c=4 ./atob.go ./atof.go ./atoi.go ./decimal.go ./doc.go ./extfloat.go ./ftoa.go ./isprint.go ./itoa.go ./quote.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b023/_pkg_.a # internal
cp $WORK/b023/_pkg_.a /root/.cache/go-build/17/174625206608f51218c43a5536c6215355a6b9b803e84c1adf33a6f29283c30c-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b026/_pkg_.a # internal
cp $WORK/b026/_pkg_.a /root/.cache/go-build/96/969d2a2f2f2c34c25e53939d219cfd21f847973d32a3edfdae1ba67866ca6d12-d # internal
mkdir -p $WORK/b029/
cat >$WORK/b029/go_asm.h << 'EOF' # internal
EOF
cd /usr/local/go/src/syscall
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b029=>" -I $WORK/b029/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -gensymabis -o $WORK/b029/symabis ./asm_linux_arm.s
cat >$WORK/b029/importcfg << 'EOF' # internal
# import config
packagefile internal/bytealg=$WORK/b006/_pkg_.a
packagefile internal/oserror=$WORK/b026/_pkg_.a
packagefile internal/race=$WORK/b020/_pkg_.a
packagefile runtime=$WORK/b005/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
EOF
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b029/_pkg_.a -trimpath "$WORK/b029=>" -p syscall -std -buildid sF56jI3UplOBDyEGbyI5/sF56jI3UplOBDyEGbyI5 -goversion go1.14.1 -symabis $WORK/b029/symabis -D "" -importcfg $WORK/b029/importcfg -pack -asmhdr $WORK/b029/go_asm.h -c=4 ./dirent.go ./endian_little.go ./env_unix.go ./exec_linux.go ./exec_unix.go ./flock.go ./flock_linux_32bit.go ./lsf_linux.go ./msan0.go ./net.go ./netlink_linux.go ./setuidgid_32_linux.go ./sock_cloexec_linux.go ./sockcmsg_linux.go ./sockcmsg_unix.go ./sockcmsg_unix_other.go ./str.go ./syscall.go ./syscall_linux.go ./syscall_linux_arm.go ./syscall_unix.go ./time_nofake.go ./timestruct.go ./zerrors_linux_arm.go ./zsyscall_linux_arm.go ./zsysnum_linux_arm.go ./ztypes_linux_arm.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b024/_pkg_.a # internal
cp $WORK/b024/_pkg_.a /root/.cache/go-build/4d/4d7731574658a719ae65e0ea9d2a74dc24d05fb2584dd1ba1952f76363426b0d-d # internal
mkdir -p $WORK/b040/
mkdir -p $WORK/b061/
cat >$WORK/b040/importcfg << 'EOF' # internal
# import config
packagefile io=$WORK/b024/_pkg_.a
EOF
cd /usr/local/go/src/hash
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b040/_pkg_.a -trimpath "$WORK/b040=>" -p hash -std -complete -buildid Lhir2DLfWvv0DS8UMaK8/Lhir2DLfWvv0DS8UMaK8 -goversion go1.14.1 -D "" -importcfg $WORK/b040/importcfg -pack -c=4 ./hash.go
mkdir -p $WORK/b034/
cat >$WORK/b061/importcfg << 'EOF' # internal
# import config
packagefile io=$WORK/b024/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
EOF
cd /usr/local/go/src/crypto/internal/randutil
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b061/_pkg_.a -trimpath "$WORK/b061=>" -p crypto/internal/randutil -std -complete -buildid gx4krN9_sgNfz2ys8kWA/gx4krN9_sgNfz2ys8kWA -goversion go1.14.1 -D "" -importcfg $WORK/b061/importcfg -pack -c=4 ./randutil.go
cat >$WORK/b034/importcfg << 'EOF' # internal
# import config
packagefile errors=$WORK/b003/_pkg_.a
packagefile internal/bytealg=$WORK/b006/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile unicode=$WORK/b022/_pkg_.a
packagefile unicode/utf8=$WORK/b018/_pkg_.a
EOF
mkdir -p $WORK/b032/
cat >$WORK/b032/importcfg << 'EOF' # internal
# import config
packagefile errors=$WORK/b003/_pkg_.a
packagefile internal/bytealg=$WORK/b006/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
packagefile unicode=$WORK/b022/_pkg_.a
packagefile unicode/utf8=$WORK/b018/_pkg_.a
EOF
cd /usr/local/go/src/bytes
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b034/_pkg_.a -trimpath "$WORK/b034=>" -p bytes -std -buildid x687B1BDRQ59MAEuP77T/x687B1BDRQ59MAEuP77T -goversion go1.14.1 -D "" -importcfg $WORK/b034/importcfg -pack -c=4 ./buffer.go ./bytes.go ./reader.go
cd /usr/local/go/src/strings
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b032/_pkg_.a -trimpath "$WORK/b032=>" -p strings -std -complete -buildid u2ziN5DwDCbSv-WUMdCL/u2ziN5DwDCbSv-WUMdCL -goversion go1.14.1 -D "" -importcfg $WORK/b032/importcfg -pack -c=4 ./builder.go ./compare.go ./reader.go ./replace.go ./search.go ./strings.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b040/_pkg_.a # internal
cp $WORK/b040/_pkg_.a /root/.cache/go-build/00/00d9ad635a2a17f4f279663a600ea106876f0e1880ed98493683cf2e1e5eb8c1-d # internal
mkdir -p $WORK/b067/
mkdir -p $WORK/b039/
cat >$WORK/b039/importcfg << 'EOF' # internal
# import config
packagefile errors=$WORK/b003/_pkg_.a
packagefile hash=$WORK/b040/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
EOF
cat >$WORK/b067/importcfg << 'EOF' # internal
# import config
packagefile crypto/subtle=$WORK/b054/_pkg_.a
packagefile hash=$WORK/b040/_pkg_.a
EOF
cd /usr/local/go/src/hash/crc32
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b039/_pkg_.a -trimpath "$WORK/b039=>" -p hash/crc32 -std -complete -buildid pANMIFqf1rU9iK-vt55W/pANMIFqf1rU9iK-vt55W -goversion go1.14.1 -D "" -importcfg $WORK/b039/importcfg -pack -c=4 ./crc32.go ./crc32_generic.go ./crc32_otherarch.go
cd /usr/local/go/src/crypto/hmac
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b067/_pkg_.a -trimpath "$WORK/b067=>" -p crypto/hmac -std -complete -buildid wXQl7HorsC9i5hKsQYXY/wXQl7HorsC9i5hKsQYXY -goversion go1.14.1 -D "" -importcfg $WORK/b067/importcfg -pack -c=4 ./hmac.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b061/_pkg_.a # internal
cp $WORK/b061/_pkg_.a /root/.cache/go-build/d1/d16493ee8cd100cf9c024f7095381008ec079518b525eacc9b1fd07f239a2be5-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b017/_pkg_.a # internal
cp $WORK/b017/_pkg_.a /root/.cache/go-build/a2/a24b52e42e719cf86a291889391dd56e64811411c401a5a1b3fec6c8895539f7-d # internal
mkdir -p $WORK/b057/
cat >$WORK/b057/importcfg << 'EOF' # internal
# import config
packagefile hash=$WORK/b040/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile strconv=$WORK/b017/_pkg_.a
EOF
cd /usr/local/go/src/crypto
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b057/_pkg_.a -trimpath "$WORK/b057=>" -p crypto -std -complete -buildid eTFKm3DPMMa7frX26A5q/eTFKm3DPMMa7frX26A5q -goversion go1.14.1 -D "" -importcfg $WORK/b057/importcfg -pack -c=4 ./crypto.go
mkdir -p $WORK/b014/
cat >$WORK/b014/go_asm.h << 'EOF' # internal
EOF
cd /usr/local/go/src/reflect
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b014=>" -I $WORK/b014/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -gensymabis -o $WORK/b014/symabis ./asm_arm.s
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b045/_pkg_.a # internal
cp $WORK/b045/_pkg_.a /root/.cache/go-build/87/87f4abd2f6a70af3fad946f8382c5398f4d3ff8c1b04c7d0e1ae0dbd509a0a03-d # internal
mkdir -p $WORK/b069/
cat >$WORK/b069/importcfg << 'EOF' # internal
# import config
packagefile crypto/internal/subtle=$WORK/b053/_pkg_.a
packagefile strconv=$WORK/b017/_pkg_.a
EOF
cd /usr/local/go/src/crypto/rc4
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b069/_pkg_.a -trimpath "$WORK/b069=>" -p crypto/rc4 -std -complete -buildid cqR2_KnM3EsvmD8eOlW9/cqR2_KnM3EsvmD8eOlW9 -goversion go1.14.1 -D "" -importcfg $WORK/b069/importcfg -pack -c=4 ./rc4.go
cat >$WORK/b014/importcfg << 'EOF' # internal
# import config
packagefile math=$WORK/b015/_pkg_.a
packagefile runtime=$WORK/b005/_pkg_.a
packagefile strconv=$WORK/b017/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
packagefile unicode=$WORK/b022/_pkg_.a
packagefile unicode/utf8=$WORK/b018/_pkg_.a
EOF
cd /usr/local/go/src/reflect
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b014/_pkg_.a -trimpath "$WORK/b014=>" -p reflect -std -buildid NdBKS0buRUELW8_EqGyi/NdBKS0buRUELW8_EqGyi -goversion go1.14.1 -symabis $WORK/b014/symabis -D "" -importcfg $WORK/b014/importcfg -pack -asmhdr $WORK/b014/go_asm.h -c=4 ./deepequal.go ./makefunc.go ./swapper.go ./type.go ./value.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b067/_pkg_.a # internal
cp $WORK/b067/_pkg_.a /root/.cache/go-build/cc/cc381081f796040bc291d949501072dd91d76926f347324875cac4dc3a13e6ff-d # internal
mkdir -p $WORK/b089/
cat >$WORK/b089/importcfg << 'EOF' # internal
# import config
packagefile crypto/hmac=$WORK/b067/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile hash=$WORK/b040/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
EOF
cd /usr/local/go/src/vendor/golang.org/x/crypto/hkdf
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b089/_pkg_.a -trimpath "$WORK/b089=>" -p vendor/golang.org/x/crypto/hkdf -std -complete -buildid yK7aQLqfQy8K98PFMuHI/yK7aQLqfQy8K98PFMuHI -goversion go1.14.1 -D "" -importcfg $WORK/b089/importcfg -pack -c=4 ./hkdf.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b034/_pkg_.a # internal
cp $WORK/b034/_pkg_.a /root/.cache/go-build/6d/6d66d6b85e2d743f9420b7e17a001f48fda18df52b35f8cbfe611a97daa25c8b-d # internal
mkdir -p $WORK/b036/
cat >$WORK/b036/importcfg << 'EOF' # internal
# import config
packagefile bytes=$WORK/b034/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile unicode/utf8=$WORK/b018/_pkg_.a
EOF
cd /usr/local/go/src/bufio
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b036/_pkg_.a -trimpath "$WORK/b036=>" -p bufio -std -complete -buildid PpO9qxVuBEJ2i048zIpK/PpO9qxVuBEJ2i048zIpK -goversion go1.14.1 -D "" -importcfg $WORK/b036/importcfg -pack -c=4 ./bufio.go ./scan.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b057/_pkg_.a # internal
cp $WORK/b057/_pkg_.a /root/.cache/go-build/b8/b8f9649111ee442976a57a744c0e4b0af30858fb54167a3e384cb186b778e3bf-d # internal
mkdir -p $WORK/b093/
cat >$WORK/b093/importcfg << 'EOF' # internal
# import config
packagefile bytes=$WORK/b034/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile unicode/utf8=$WORK/b018/_pkg_.a
EOF
cd /usr/local/go/src/vendor/golang.org/x/text/transform
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b093/_pkg_.a -trimpath "$WORK/b093=>" -p vendor/golang.org/x/text/transform -std -complete -buildid _4KDr3JGztskFr1qG5Nz/_4KDr3JGztskFr1qG5Nz -goversion go1.14.1 -D "" -importcfg $WORK/b093/importcfg -pack -c=4 ./transform.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b039/_pkg_.a # internal
cp $WORK/b039/_pkg_.a /root/.cache/go-build/eb/ebfe27f5892964866681c2dd10ffd1fab7230536b01f03eac412e03b45e9469f-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b069/_pkg_.a # internal
cp $WORK/b069/_pkg_.a /root/.cache/go-build/47/4764bee815613e40e4a4254a4d10ad1c2ab5295fa17966dbab5758d4aea96c14-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b032/_pkg_.a # internal
cp $WORK/b032/_pkg_.a /root/.cache/go-build/3e/3e111595acf109dd648cbabc3c2e058bf58bc591c38a7a4149bc82d2aa63b88c-d # internal
mkdir -p $WORK/b104/
cat >$WORK/b104/importcfg << 'EOF' # internal
# import config
packagefile errors=$WORK/b003/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
packagefile unicode/utf8=$WORK/b018/_pkg_.a
EOF
cd /usr/local/go/src/path
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b104/_pkg_.a -trimpath "$WORK/b104=>" -p path -std -complete -buildid 5p9gxU22H5ZT0e2wkUi_/5p9gxU22H5ZT0e2wkUi_ -goversion go1.14.1 -D "" -importcfg $WORK/b104/importcfg -pack -c=4 ./match.go ./path.go
mkdir -p $WORK/b110/
cat >$WORK/b110/importcfg << 'EOF' # internal
# import config
packagefile sort=$WORK/b023/_pkg_.a
packagefile strconv=$WORK/b017/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
packagefile unicode=$WORK/b022/_pkg_.a
packagefile unicode/utf8=$WORK/b018/_pkg_.a
EOF
cd /usr/local/go/src/regexp/syntax
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b110/_pkg_.a -trimpath "$WORK/b110=>" -p regexp/syntax -std -complete -buildid acjuaeN_TNTwVZW3dkGh/acjuaeN_TNTwVZW3dkGh -goversion go1.14.1 -D "" -importcfg $WORK/b110/importcfg -pack -c=4 ./compile.go ./doc.go ./op_string.go ./parse.go ./perl_groups.go ./prog.go ./regexp.go ./simplify.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b089/_pkg_.a # internal
cp $WORK/b089/_pkg_.a /root/.cache/go-build/94/94a086488403a0c43426c5c7bf11bc1428f22ce36ab12a9000cd01b29c743c69-d # internal
cd /usr/local/go/src/syscall
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b029=>" -I $WORK/b029/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -o $WORK/b029/asm_linux_arm.o ./asm_linux_arm.s
/usr/local/go/pkg/tool/linux_arm64/pack r $WORK/b029/_pkg_.a $WORK/b029/asm_linux_arm.o # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b029/_pkg_.a # internal
cp $WORK/b029/_pkg_.a /root/.cache/go-build/1f/1f634f7e8e47fd65e70774b51d4a85f8eaff8e077acf7061a5280b98e850a1ed-d # internal
mkdir -p $WORK/b028/
mkdir -p $WORK/b030/
cat >$WORK/b030/importcfg << 'EOF' # internal
# import config
packagefile errors=$WORK/b003/_pkg_.a
packagefile runtime=$WORK/b005/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
packagefile syscall=$WORK/b029/_pkg_.a
EOF
cat >$WORK/b028/importcfg << 'EOF' # internal
# import config
packagefile sync/atomic=$WORK/b021/_pkg_.a
packagefile syscall=$WORK/b029/_pkg_.a
EOF
cd /usr/local/go/src/time
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b030/_pkg_.a -trimpath "$WORK/b030=>" -p time -std -buildid yWHfrBVmwqbE3R58xrps/yWHfrBVmwqbE3R58xrps -goversion go1.14.1 -D "" -importcfg $WORK/b030/importcfg -pack -c=4 ./format.go ./sleep.go ./sys_unix.go ./tick.go ./time.go ./zoneinfo.go ./zoneinfo_read.go ./zoneinfo_unix.go
cd /usr/local/go/src/internal/syscall/unix
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b028/_pkg_.a -trimpath "$WORK/b028=>" -p internal/syscall/unix -std -complete -buildid NNHa3hs1i3HcCXDRGy5w/NNHa3hs1i3HcCXDRGy5w -goversion go1.14.1 -D "" -importcfg $WORK/b028/importcfg -pack -c=4 ./at.go ./at_sysnum_fstatat64_linux.go ./at_sysnum_linux.go ./fcntl_linux_32bit.go ./getrandom_linux.go ./getrandom_linux_arm.go ./nonblocking.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b093/_pkg_.a # internal
cp $WORK/b093/_pkg_.a /root/.cache/go-build/cb/cb1a78743178b36d4fee552f8cb65acfc3126e3860b522b1b6e41aabefb28fa4-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b104/_pkg_.a # internal
cp $WORK/b104/_pkg_.a /root/.cache/go-build/2b/2b9f6541133f42cccfaf9f0419eac09db7b7be7cae2f60368a9755b7afb509ed-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b036/_pkg_.a # internal
cp $WORK/b036/_pkg_.a /root/.cache/go-build/e8/e8f201fc9c9ea51db5c5b5bb620d034ef4a0690ebcf957b653e6d73ba6143764-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b028/_pkg_.a # internal
cp $WORK/b028/_pkg_.a /root/.cache/go-build/17/176d42ffc4bdd51093c5621d391f9c4a35b4d7ffa4cd6cde848ecf60f48e15ae-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b110/_pkg_.a # internal
cp $WORK/b110/_pkg_.a /root/.cache/go-build/52/52f2743a96027db53c2329488da061e11b21c7b1d2c99ec387e33366837fba3a-d # internal
mkdir -p $WORK/b109/
cat >$WORK/b109/importcfg << 'EOF' # internal
# import config
packagefile bytes=$WORK/b034/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile regexp/syntax=$WORK/b110/_pkg_.a
packagefile sort=$WORK/b023/_pkg_.a
packagefile strconv=$WORK/b017/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
packagefile unicode=$WORK/b022/_pkg_.a
packagefile unicode/utf8=$WORK/b018/_pkg_.a
EOF
cd /usr/local/go/src/regexp
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b109/_pkg_.a -trimpath "$WORK/b109=>" -p regexp -std -complete -buildid _qdBvtnm5rsJBVhCfCLT/_qdBvtnm5rsJBVhCfCLT -goversion go1.14.1 -D "" -importcfg $WORK/b109/importcfg -pack -c=4 ./backtrack.go ./exec.go ./onepass.go ./regexp.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b030/_pkg_.a # internal
cp $WORK/b030/_pkg_.a /root/.cache/go-build/52/5200daa54f4e8445576b434cf8e3c51a14c9ed012021238a6f867a8af507db27-d # internal
mkdir -p $WORK/b044/
cat >$WORK/b044/importcfg << 'EOF' # internal
# import config
packagefile errors=$WORK/b003/_pkg_.a
packagefile internal/reflectlite=$WORK/b004/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
packagefile sync/atomic=$WORK/b021/_pkg_.a
packagefile time=$WORK/b030/_pkg_.a
EOF
cd /usr/local/go/src/context
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b044/_pkg_.a -trimpath "$WORK/b044=>" -p context -std -complete -buildid uPhkEgYqWvFyOMg_DDVm/uPhkEgYqWvFyOMg_DDVm -goversion go1.14.1 -D "" -importcfg $WORK/b044/importcfg -pack -c=4 ./context.go
mkdir -p $WORK/b027/
cat >$WORK/b027/importcfg << 'EOF' # internal
# import config
packagefile errors=$WORK/b003/_pkg_.a
packagefile internal/syscall/unix=$WORK/b028/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile runtime=$WORK/b005/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
packagefile sync/atomic=$WORK/b021/_pkg_.a
packagefile syscall=$WORK/b029/_pkg_.a
packagefile time=$WORK/b030/_pkg_.a
EOF
cd /usr/local/go/src/internal/poll
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b027/_pkg_.a -trimpath "$WORK/b027=>" -p internal/poll -std -buildid GdulaDlP4v9c8LgpHwvP/GdulaDlP4v9c8LgpHwvP -goversion go1.14.1 -D "" -importcfg $WORK/b027/importcfg -pack -c=4 ./errno_unix.go ./fcntl_syscall.go ./fd.go ./fd_fsync_posix.go ./fd_mutex.go ./fd_poll_runtime.go ./fd_posix.go ./fd_unix.go ./fd_writev_unix.go ./hook_cloexec.go ./hook_unix.go ./sendfile_linux.go ./sock_cloexec.go ./sockopt.go ./sockopt_linux.go ./sockopt_unix.go ./sockoptip.go ./splice_linux.go ./writev.go
cd /usr/local/go/src/reflect
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b014=>" -I $WORK/b014/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -o $WORK/b014/asm_arm.o ./asm_arm.s
/usr/local/go/pkg/tool/linux_arm64/pack r $WORK/b014/_pkg_.a $WORK/b014/asm_arm.o # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b014/_pkg_.a # internal
cp $WORK/b014/_pkg_.a /root/.cache/go-build/d4/d4c4dee43745a239529b7c29fedbebe7db656b0229c1ee3b150fad5bb8930a9b-d # internal
mkdir -p $WORK/b013/
cat >$WORK/b013/importcfg << 'EOF' # internal
# import config
packagefile reflect=$WORK/b014/_pkg_.a
packagefile sort=$WORK/b023/_pkg_.a
EOF
cd /usr/local/go/src/internal/fmtsort
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b013/_pkg_.a -trimpath "$WORK/b013=>" -p internal/fmtsort -std -complete -buildid 7mnoKV8i2piSrMXKD8-A/7mnoKV8i2piSrMXKD8-A -goversion go1.14.1 -D "" -importcfg $WORK/b013/importcfg -pack -c=4 ./sort.go
mkdir -p $WORK/b038/
cat >$WORK/b038/importcfg << 'EOF' # internal
# import config
packagefile errors=$WORK/b003/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile math=$WORK/b015/_pkg_.a
packagefile reflect=$WORK/b014/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
EOF
cd /usr/local/go/src/encoding/binary
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b038/_pkg_.a -trimpath "$WORK/b038=>" -p encoding/binary -std -complete -buildid swGv7BzzXF2B2T8AEcfn/swGv7BzzXF2B2T8AEcfn -goversion go1.14.1 -D "" -importcfg $WORK/b038/importcfg -pack -c=4 ./binary.go ./varint.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b044/_pkg_.a # internal
cp $WORK/b044/_pkg_.a /root/.cache/go-build/b0/b09b04738991c9acae1f6b97089b843641e4a1c57835042e146a18906abddf01-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b109/_pkg_.a # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b013/_pkg_.a # internal
cp $WORK/b109/_pkg_.a /root/.cache/go-build/55/5565dfda1fc72eb19b1c73367f553c5950f988cc832ef6f5768250604256968a-d # internal
cp $WORK/b013/_pkg_.a /root/.cache/go-build/b6/b68ccf99ded3399dd64b907f1fb00c071a796a00dccc2324aabb59e4fc52bcde-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b027/_pkg_.a # internal
cp $WORK/b027/_pkg_.a /root/.cache/go-build/a0/a0ca3ebe8481d3493e7e3fd358fc1842fe93cc0b2ea261ac1f06dcf4f334fef5-d # internal
mkdir -p $WORK/b025/
cat >$WORK/b025/importcfg << 'EOF' # internal
# import config
packagefile errors=$WORK/b003/_pkg_.a
packagefile internal/oserror=$WORK/b026/_pkg_.a
packagefile internal/poll=$WORK/b027/_pkg_.a
packagefile internal/syscall/unix=$WORK/b028/_pkg_.a
packagefile internal/testlog=$WORK/b031/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile runtime=$WORK/b005/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
packagefile sync/atomic=$WORK/b021/_pkg_.a
packagefile syscall=$WORK/b029/_pkg_.a
packagefile time=$WORK/b030/_pkg_.a
EOF
cd /usr/local/go/src/os
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b025/_pkg_.a -trimpath "$WORK/b025=>" -p os -std -buildid u0Li4rI9a3HTlzKVDwz_/u0Li4rI9a3HTlzKVDwz_ -goversion go1.14.1 -D "" -importcfg $WORK/b025/importcfg -pack -c=4 ./dir.go ./dir_unix.go ./env.go ./env_default.go ./error.go ./error_errno.go ./error_posix.go ./exec.go ./exec_posix.go ./exec_unix.go ./executable.go ./executable_procfs.go ./file.go ./file_posix.go ./file_unix.go ./getwd.go ./path.go ./path_unix.go ./pipe_linux.go ./proc.go ./rawconn.go ./removeall_at.go ./stat.go ./stat_linux.go ./stat_unix.go ./sticky_notbsd.go ./str.go ./sys.go ./sys_linux.go ./sys_unix.go ./types.go ./types_unix.go ./wait_waitid.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b038/_pkg_.a # internal
cp $WORK/b038/_pkg_.a /root/.cache/go-build/ca/ca8add5fa753b304215955327610474a32364f6bff8ce5ed53547cd4d7604f8b-d # internal
mkdir -p $WORK/b068/
mkdir -p $WORK/b078/
mkdir -p $WORK/b052/
cat >$WORK/b078/importcfg << 'EOF' # internal
# import config
packagefile encoding/binary=$WORK/b038/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile strconv=$WORK/b017/_pkg_.a
EOF
mkdir -p $WORK/b062/
cd /usr/local/go/src/encoding/base64
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b078/_pkg_.a -trimpath "$WORK/b078=>" -p encoding/base64 -std -complete -buildid Is0CcRWykP-X3Fcg5Riz/Is0CcRWykP-X3Fcg5Riz -goversion go1.14.1 -D "" -importcfg $WORK/b078/importcfg -pack -c=4 ./base64.go
cat >$WORK/b052/importcfg << 'EOF' # internal
# import config
packagefile crypto/internal/subtle=$WORK/b053/_pkg_.a
packagefile crypto/subtle=$WORK/b054/_pkg_.a
packagefile encoding/binary=$WORK/b038/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile runtime=$WORK/b005/_pkg_.a
EOF
cat >$WORK/b068/go_asm.h << 'EOF' # internal
EOF
mkdir -p $WORK/b066/
cat >$WORK/b062/importcfg << 'EOF' # internal
# import config
packagefile crypto=$WORK/b057/_pkg_.a
packagefile encoding/binary=$WORK/b038/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile hash=$WORK/b040/_pkg_.a
packagefile math/bits=$WORK/b016/_pkg_.a
EOF
cd /usr/local/go/src/crypto/md5
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b068=>" -I $WORK/b068/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -gensymabis -o $WORK/b068/symabis ./md5block_arm.s
cd /usr/local/go/src/crypto/sha512
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b062/_pkg_.a -trimpath "$WORK/b062=>" -p crypto/sha512 -std -complete -buildid 8Rg5Y2sf8JnnlypuBkzE/8Rg5Y2sf8JnnlypuBkzE -goversion go1.14.1 -D "" -importcfg $WORK/b062/importcfg -pack -c=4 ./sha512.go ./sha512block.go ./sha512block_generic.go
cd /usr/local/go/src/crypto/cipher
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b052/_pkg_.a -trimpath "$WORK/b052=>" -p crypto/cipher -std -complete -buildid 6E7SC1GRNHZwqeNW74mJ/6E7SC1GRNHZwqeNW74mJ -goversion go1.14.1 -D "" -importcfg $WORK/b052/importcfg -pack -c=4 ./cbc.go ./cfb.go ./cipher.go ./ctr.go ./gcm.go ./io.go ./ofb.go ./xor_generic.go
mkdir -p $WORK/b072/
cat >$WORK/b066/importcfg << 'EOF' # internal
# import config
packagefile encoding/binary=$WORK/b038/_pkg_.a
EOF
mkdir -p $WORK/b071/
cd /usr/local/go/src/crypto/ed25519/internal/edwards25519
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b066/_pkg_.a -trimpath "$WORK/b066=>" -p crypto/ed25519/internal/edwards25519 -std -complete -buildid ep3JQ1Q4O7xl2m2NCmd8/ep3JQ1Q4O7xl2m2NCmd8 -goversion go1.14.1 -D "" -importcfg $WORK/b066/importcfg -pack -c=4 ./const.go ./edwards25519.go
cat >$WORK/b072/importcfg << 'EOF' # internal
# import config
packagefile crypto=$WORK/b057/_pkg_.a
packagefile encoding/binary=$WORK/b038/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile hash=$WORK/b040/_pkg_.a
packagefile math/bits=$WORK/b016/_pkg_.a
EOF
cd /usr/local/go/src/crypto/sha256
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b072/_pkg_.a -trimpath "$WORK/b072=>" -p crypto/sha256 -std -complete -buildid 6FUJXNKWVXUCSOR5foQl/6FUJXNKWVXUCSOR5foQl -goversion go1.14.1 -D "" -importcfg $WORK/b072/importcfg -pack -c=4 ./sha256.go ./sha256block.go ./sha256block_generic.go
cat >$WORK/b071/go_asm.h << 'EOF' # internal
EOF
cd /usr/local/go/src/crypto/sha1
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b071=>" -I $WORK/b071/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -gensymabis -o $WORK/b071/symabis ./sha1block_arm.s
cat >$WORK/b068/importcfg << 'EOF' # internal
# import config
packagefile crypto=$WORK/b057/_pkg_.a
packagefile encoding/binary=$WORK/b038/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile hash=$WORK/b040/_pkg_.a
packagefile math/bits=$WORK/b016/_pkg_.a
EOF
cd /usr/local/go/src/crypto/md5
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b068/_pkg_.a -trimpath "$WORK/b068=>" -p crypto/md5 -std -buildid Zv6vyJ7rJzJo92VGv1NX/Zv6vyJ7rJzJo92VGv1NX -goversion go1.14.1 -symabis $WORK/b068/symabis -D "" -importcfg $WORK/b068/importcfg -pack -asmhdr $WORK/b068/go_asm.h -c=4 ./md5.go ./md5block.go ./md5block_decl.go
cat >$WORK/b071/importcfg << 'EOF' # internal
# import config
packagefile crypto=$WORK/b057/_pkg_.a
packagefile encoding/binary=$WORK/b038/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile hash=$WORK/b040/_pkg_.a
packagefile math/bits=$WORK/b016/_pkg_.a
EOF
cd /usr/local/go/src/crypto/sha1
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b071/_pkg_.a -trimpath "$WORK/b071=>" -p crypto/sha1 -std -buildid qPEvbrgAqebv_iNlT9n0/qPEvbrgAqebv_iNlT9n0 -goversion go1.14.1 -symabis $WORK/b071/symabis -D "" -importcfg $WORK/b071/importcfg -pack -asmhdr $WORK/b071/go_asm.h -c=4 ./sha1.go ./sha1block.go ./sha1block_decl.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b062/_pkg_.a # internal
cp $WORK/b062/_pkg_.a /root/.cache/go-build/06/060808a1764c83cec0d39d2a38e29efa19443dd5faa7a27123d9314687cc3583-d # internal
mkdir -p $WORK/b087/
cat >$WORK/b087/importcfg << 'EOF' # internal
# import config
packagefile crypto/subtle=$WORK/b054/_pkg_.a
packagefile encoding/binary=$WORK/b038/_pkg_.a
packagefile math/bits=$WORK/b016/_pkg_.a
EOF
cd /usr/local/go/src/vendor/golang.org/x/crypto/poly1305
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b087/_pkg_.a -trimpath "$WORK/b087=>" -p vendor/golang.org/x/crypto/poly1305 -std -complete -buildid 5CvNdtNcWCIkWH7iol0r/5CvNdtNcWCIkWH7iol0r -goversion go1.14.1 -D "" -importcfg $WORK/b087/importcfg -pack -c=4 ./bits_go1.13.go ./mac_noasm.go ./poly1305.go ./sum_generic.go ./sum_noasm.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b072/_pkg_.a # internal
cp $WORK/b072/_pkg_.a /root/.cache/go-build/75/7582beb92f69e905a7318a1a984c1ab26a8ec1e8cca1db89b6c35d4b9bad89b0-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b078/_pkg_.a # internal
cp $WORK/b078/_pkg_.a /root/.cache/go-build/72/72e1b4e47bd58f64deb601d5da94c9822993de9cc1ce23a1f582709433c556ee-d # internal
mkdir -p $WORK/b077/
cat >$WORK/b077/importcfg << 'EOF' # internal
# import config
packagefile bytes=$WORK/b034/_pkg_.a
packagefile encoding/base64=$WORK/b078/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile sort=$WORK/b023/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
EOF
cd /usr/local/go/src/encoding/pem
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b077/_pkg_.a -trimpath "$WORK/b077=>" -p encoding/pem -std -complete -buildid AnBJUfqnzq7KtFiQGNDI/AnBJUfqnzq7KtFiQGNDI -goversion go1.14.1 -D "" -importcfg $WORK/b077/importcfg -pack -c=4 ./pem.go
mkdir -p $WORK/b117/
cat >$WORK/b117/go_asm.h << 'EOF' # internal
EOF
cd /root/go/pkg/mod/golang.org/x/sys@v0.0.0-20200321134203-328b4cd54aae/unix
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b117=>" -I $WORK/b117/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -gensymabis -o $WORK/b117/symabis ./asm_linux_arm.s
cd /usr/local/go/src/crypto/md5
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b068=>" -I $WORK/b068/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -o $WORK/b068/md5block_arm.o ./md5block_arm.s
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b052/_pkg_.a # internal
cd /usr/local/go/src/crypto/sha1
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b071=>" -I $WORK/b071/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -o $WORK/b071/sha1block_arm.o ./sha1block_arm.s
cp $WORK/b052/_pkg_.a /root/.cache/go-build/00/00c954bc35f398ea3b62b7af760df571a75d9442c4a16ec332efdaebbc65f7c2-d # internal
mkdir -p $WORK/b051/
cat >$WORK/b051/importcfg << 'EOF' # internal
# import config
packagefile crypto/cipher=$WORK/b052/_pkg_.a
packagefile crypto/internal/subtle=$WORK/b053/_pkg_.a
packagefile encoding/binary=$WORK/b038/_pkg_.a
packagefile strconv=$WORK/b017/_pkg_.a
EOF
cd /usr/local/go/src/crypto/aes
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b051/_pkg_.a -trimpath "$WORK/b051=>" -p crypto/aes -std -complete -buildid e1h0TDIm1zjfRlKF6uw4/e1h0TDIm1zjfRlKF6uw4 -goversion go1.14.1 -D "" -importcfg $WORK/b051/importcfg -pack -c=4 ./block.go ./cipher.go ./cipher_generic.go ./const.go ./modes.go
cat >$WORK/b117/importcfg << 'EOF' # internal
# import config
packagefile bytes=$WORK/b034/_pkg_.a
packagefile encoding/binary=$WORK/b038/_pkg_.a
packagefile math/bits=$WORK/b016/_pkg_.a
packagefile runtime=$WORK/b005/_pkg_.a
packagefile sort=$WORK/b023/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
packagefile syscall=$WORK/b029/_pkg_.a
packagefile time=$WORK/b030/_pkg_.a
EOF
cd /root/go/pkg/mod/golang.org/x/sys@v0.0.0-20200321134203-328b4cd54aae/unix
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b117/_pkg_.a -trimpath "$WORK/b117=>" -p golang.org/x/sys/unix -lang=go1.12 -buildid HyjFAUFL5wC9DZU623m2/HyjFAUFL5wC9DZU623m2 -goversion go1.14.1 -symabis $WORK/b117/symabis -D "" -importcfg $WORK/b117/importcfg -pack -asmhdr $WORK/b117/go_asm.h -c=4 ./affinity_linux.go ./aliases.go ./bluetooth_linux.go ./constants.go ./dev_linux.go ./dirent.go ./endian_little.go ./env_unix.go ./fcntl.go ./fcntl_linux_32bit.go ./fdset.go ./ioctl.go ./pagesize_unix.go ./race0.go ./readdirent_getdents.go ./sockcmsg_linux.go ./sockcmsg_unix.go ./sockcmsg_unix_other.go ./str.go ./syscall.go ./syscall_linux.go ./syscall_linux_arm.go ./syscall_linux_gc.go ./syscall_unix.go ./syscall_unix_gc.go ./timestruct.go ./zerrors_linux.go ./zerrors_linux_arm.go ./zptrace_armnn_linux.go ./zsyscall_linux.go ./zsyscall_linux_arm.go ./zsysnum_linux_arm.go ./ztypes_linux.go ./ztypes_linux_arm.go
cd /usr/local/go/src/crypto/md5
/usr/local/go/pkg/tool/linux_arm64/pack r $WORK/b068/_pkg_.a $WORK/b068/md5block_arm.o # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b068/_pkg_.a # internal
cp $WORK/b068/_pkg_.a /root/.cache/go-build/dd/ddfab068e6f39b96fd34b9995db376e3788db70155e2eba3cd64240acfa01f90-d # internal
mkdir -p $WORK/b058/
cat >$WORK/b058/importcfg << 'EOF' # internal
# import config
packagefile crypto/cipher=$WORK/b052/_pkg_.a
packagefile crypto/internal/subtle=$WORK/b053/_pkg_.a
packagefile encoding/binary=$WORK/b038/_pkg_.a
packagefile strconv=$WORK/b017/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
EOF
cd /usr/local/go/src/crypto/des
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b058/_pkg_.a -trimpath "$WORK/b058=>" -p crypto/des -std -complete -buildid DtRFLJBY8U7F6QBTccf0/DtRFLJBY8U7F6QBTccf0 -goversion go1.14.1 -D "" -importcfg $WORK/b058/importcfg -pack -c=4 ./block.go ./cipher.go ./const.go
cd /usr/local/go/src/crypto/sha1
/usr/local/go/pkg/tool/linux_arm64/pack r $WORK/b071/_pkg_.a $WORK/b071/sha1block_arm.o # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b071/_pkg_.a # internal
cp $WORK/b071/_pkg_.a /root/.cache/go-build/1b/1b3036e3295c6c76c22d560d9b95127e4ed7742c86ce16b6c030515c922e4256-d # internal
mkdir -p $WORK/b085/
cat >$WORK/b085/importcfg << 'EOF' # internal
# import config
importmap golang.org/x/crypto/internal/subtle=vendor/golang.org/x/crypto/internal/subtle
packagefile crypto/cipher=$WORK/b052/_pkg_.a
packagefile encoding/binary=$WORK/b038/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile vendor/golang.org/x/crypto/internal/subtle=$WORK/b086/_pkg_.a
packagefile math/bits=$WORK/b016/_pkg_.a
packagefile runtime=$WORK/b005/_pkg_.a
EOF
cd /usr/local/go/src/vendor/golang.org/x/crypto/chacha20
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b085/_pkg_.a -trimpath "$WORK/b085=>" -p vendor/golang.org/x/crypto/chacha20 -std -complete -buildid NSP1k8O2_n9w6cCJMEHe/NSP1k8O2_n9w6cCJMEHe -goversion go1.14.1 -D "" -importcfg $WORK/b085/importcfg -pack -c=4 ./chacha_generic.go ./chacha_noasm.go ./xor.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b066/_pkg_.a # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b025/_pkg_.a # internal
cp $WORK/b066/_pkg_.a /root/.cache/go-build/f2/f23467d6408d81fb738a0ed22ae51f90130d34e7e8067c41c47b4ad361a7a3d5-d # internal
cp $WORK/b025/_pkg_.a /root/.cache/go-build/5c/5ca7b7122e4d47fe1bcc71e2fa4c932e49b277197a880e180df7141fa047856d-d # internal
mkdir -p $WORK/b012/
cat >$WORK/b012/importcfg << 'EOF' # internal
# import config
packagefile errors=$WORK/b003/_pkg_.a
packagefile internal/fmtsort=$WORK/b013/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile math=$WORK/b015/_pkg_.a
packagefile os=$WORK/b025/_pkg_.a
packagefile reflect=$WORK/b014/_pkg_.a
packagefile strconv=$WORK/b017/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
packagefile unicode/utf8=$WORK/b018/_pkg_.a
EOF
cd /usr/local/go/src/fmt
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b012/_pkg_.a -trimpath "$WORK/b012=>" -p fmt -std -complete -buildid jco2T05rMeJa9Ia5SIHB/jco2T05rMeJa9Ia5SIHB -goversion go1.14.1 -D "" -importcfg $WORK/b012/importcfg -pack -c=4 ./doc.go ./errors.go ./format.go ./print.go ./scan.go
mkdir -p $WORK/b043/
cat >$WORK/b043/importcfg << 'EOF' # internal
# import config
importmap golang.org/x/net/dns/dnsmessage=vendor/golang.org/x/net/dns/dnsmessage
packagefile context=$WORK/b044/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile vendor/golang.org/x/net/dns/dnsmessage=$WORK/b045/_pkg_.a
packagefile internal/bytealg=$WORK/b006/_pkg_.a
packagefile internal/nettrace=$WORK/b046/_pkg_.a
packagefile internal/poll=$WORK/b027/_pkg_.a
packagefile internal/singleflight=$WORK/b047/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile math/rand=$WORK/b048/_pkg_.a
packagefile os=$WORK/b025/_pkg_.a
packagefile runtime=$WORK/b005/_pkg_.a
packagefile sort=$WORK/b023/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
packagefile sync/atomic=$WORK/b021/_pkg_.a
packagefile syscall=$WORK/b029/_pkg_.a
packagefile time=$WORK/b030/_pkg_.a
EOF
cd /usr/local/go/src/net
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b043/_pkg_.a -trimpath "$WORK/b043=>" -p net -std -buildid JhJh-WK2z5qHxINrhhaN/JhJh-WK2z5qHxINrhhaN -goversion go1.14.1 -D "" -importcfg $WORK/b043/importcfg -pack -c=4 ./addrselect.go ./cgo_stub.go ./conf.go ./dial.go ./dnsclient.go ./dnsclient_unix.go ./dnsconfig_unix.go ./error_posix.go ./error_unix.go ./fd_unix.go ./file.go ./file_unix.go ./hook.go ./hook_unix.go ./hosts.go ./interface.go ./interface_linux.go ./ip.go ./iprawsock.go ./iprawsock_posix.go ./ipsock.go ./ipsock_posix.go ./lookup.go ./lookup_unix.go ./mac.go ./net.go ./nss.go ./parse.go ./pipe.go ./port.go ./port_unix.go ./rawconn.go ./sendfile_linux.go ./sock_cloexec.go ./sock_linux.go ./sock_posix.go ./sockaddr_posix.go ./sockopt_linux.go ./sockopt_posix.go ./sockoptip_linux.go ./sockoptip_posix.go ./splice_linux.go ./tcpsock.go ./tcpsock_posix.go ./tcpsockopt_posix.go ./tcpsockopt_unix.go ./udpsock.go ./udpsock_posix.go ./unixsock.go ./unixsock_posix.go ./writev_unix.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b087/_pkg_.a # internal
cp $WORK/b087/_pkg_.a /root/.cache/go-build/db/db73db82022b829550a4e903a5b44f90aee138eac966f62f173ccec57304e024-d # internal
mkdir -p $WORK/b082/
cat >$WORK/b082/importcfg << 'EOF' # internal
# import config
packagefile errors=$WORK/b003/_pkg_.a
packagefile os=$WORK/b025/_pkg_.a
packagefile runtime=$WORK/b005/_pkg_.a
packagefile sort=$WORK/b023/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
packagefile syscall=$WORK/b029/_pkg_.a
packagefile unicode/utf8=$WORK/b018/_pkg_.a
EOF
cd /usr/local/go/src/path/filepath
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b082/_pkg_.a -trimpath "$WORK/b082=>" -p path/filepath -std -complete -buildid cfTqkhCOoV7H0BCLRAaq/cfTqkhCOoV7H0BCLRAaq -goversion go1.14.1 -D "" -importcfg $WORK/b082/importcfg -pack -c=4 ./match.go ./path.go ./path_unix.go ./symlink.go ./symlink_unix.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b077/_pkg_.a # internal
cp $WORK/b077/_pkg_.a /root/.cache/go-build/47/47b3c2f3e75ddcb473580076d2dc42d11a40c3d4f74b05f41616a296c5d15ab8-d # internal
mkdir -p $WORK/b105/
cat >$WORK/b105/go_asm.h << 'EOF' # internal
EOF
cd /usr/local/go/src/os/signal
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b105=>" -I $WORK/b105/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -gensymabis -o $WORK/b105/symabis ./sig.s
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b051/_pkg_.a # internal
cp $WORK/b051/_pkg_.a /root/.cache/go-build/60/608bab5e6ef6f5dce8e7fe11d4130c48438f9f4f3b0b5606bf2bfb5fa16dc687-d # internal
mkdir -p $WORK/b113/
cat >$WORK/b113/importcfg << 'EOF' # internal
# import config
packagefile context=$WORK/b044/_pkg_.a
packagefile os=$WORK/b025/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
packagefile syscall=$WORK/b029/_pkg_.a
packagefile time=$WORK/b030/_pkg_.a
EOF
cd /root/go/pkg/mod/github.com/gofrs/flock@v0.7.1
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b113/_pkg_.a -trimpath "$WORK/b113=>" -p github.com/gofrs/flock -complete -buildid PrxQOHIs2x0F8lkRFSLJ/PrxQOHIs2x0F8lkRFSLJ -goversion go1.14.1 -D "" -importcfg $WORK/b113/importcfg -pack -c=4 ./flock.go ./flock_unix.go
cat >$WORK/b105/importcfg << 'EOF' # internal
# import config
packagefile os=$WORK/b025/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
packagefile syscall=$WORK/b029/_pkg_.a
EOF
cd /usr/local/go/src/os/signal
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b105/_pkg_.a -trimpath "$WORK/b105=>" -p os/signal -std -buildid Ixz7-15pWZC1ePJRQG9N/Ixz7-15pWZC1ePJRQG9N -goversion go1.14.1 -symabis $WORK/b105/symabis -D "" -importcfg $WORK/b105/importcfg -pack -asmhdr $WORK/b105/go_asm.h -c=4 ./doc.go ./signal.go ./signal_unix.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b058/_pkg_.a # internal
cp $WORK/b058/_pkg_.a /root/.cache/go-build/f6/f6daa0fd5f8a97b75f62965373e7d26c949818409aad59592215dc02180c0fe2-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b085/_pkg_.a # internal
cp $WORK/b085/_pkg_.a /root/.cache/go-build/c9/c977d8c159479fc57ff383f88f8a9d13acd5348c1133247290e84ca2484847ee-d # internal
mkdir -p $WORK/b084/
cat >$WORK/b084/importcfg << 'EOF' # internal
# import config
importmap golang.org/x/crypto/chacha20=vendor/golang.org/x/crypto/chacha20
importmap golang.org/x/crypto/internal/subtle=vendor/golang.org/x/crypto/internal/subtle
importmap golang.org/x/crypto/poly1305=vendor/golang.org/x/crypto/poly1305
packagefile crypto/cipher=$WORK/b052/_pkg_.a
packagefile encoding/binary=$WORK/b038/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile vendor/golang.org/x/crypto/chacha20=$WORK/b085/_pkg_.a
packagefile vendor/golang.org/x/crypto/internal/subtle=$WORK/b086/_pkg_.a
packagefile vendor/golang.org/x/crypto/poly1305=$WORK/b087/_pkg_.a
EOF
cd /usr/local/go/src/vendor/golang.org/x/crypto/chacha20poly1305
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b084/_pkg_.a -trimpath "$WORK/b084=>" -p vendor/golang.org/x/crypto/chacha20poly1305 -std -complete -buildid N0EqRmv_lYIryim3Eh_7/N0EqRmv_lYIryim3Eh_7 -goversion go1.14.1 -D "" -importcfg $WORK/b084/importcfg -pack -c=4 ./chacha20poly1305.go ./chacha20poly1305_generic.go ./chacha20poly1305_noasm.go ./xchacha20poly1305.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b113/_pkg_.a # internal
cp $WORK/b113/_pkg_.a /root/.cache/go-build/0d/0d9b493bba0c1d65194ca5d6718937cc0ad6bdb83153325fe062cddc12300658-d # internal
cd /usr/local/go/src/os/signal
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b105=>" -I $WORK/b105/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -o $WORK/b105/sig.o ./sig.s
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b082/_pkg_.a # internal
cp $WORK/b082/_pkg_.a /root/.cache/go-build/5b/5bbf7dff2acbf25d1b6e9547706cdea12e99bc1527a4297e7c6cd857589b0591-d # internal
mkdir -p $WORK/b081/
cat >$WORK/b081/importcfg << 'EOF' # internal
# import config
packagefile bytes=$WORK/b034/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile os=$WORK/b025/_pkg_.a
packagefile path/filepath=$WORK/b082/_pkg_.a
packagefile sort=$WORK/b023/_pkg_.a
packagefile strconv=$WORK/b017/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
packagefile time=$WORK/b030/_pkg_.a
EOF
cd /usr/local/go/src/io/ioutil
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b081/_pkg_.a -trimpath "$WORK/b081=>" -p io/ioutil -std -complete -buildid lEy2OqphE7TfBdZgB5hD/lEy2OqphE7TfBdZgB5hD -goversion go1.14.1 -D "" -importcfg $WORK/b081/importcfg -pack -c=4 ./ioutil.go ./tempfile.go
cd /usr/local/go/src/os/signal
/usr/local/go/pkg/tool/linux_arm64/pack r $WORK/b105/_pkg_.a $WORK/b105/sig.o # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b105/_pkg_.a # internal
cp $WORK/b105/_pkg_.a /root/.cache/go-build/49/49b606a8144c0b3427d2a5ee864f22b28eb05f8bb9b66bf6998ca5a70605bd8e-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b084/_pkg_.a # internal
cp $WORK/b084/_pkg_.a /root/.cache/go-build/ee/ee3e8c8b9bdf27ffba8d61b4d700300e5a2361c9c3610db617519631eb93a500-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b012/_pkg_.a # internal
cp $WORK/b012/_pkg_.a /root/.cache/go-build/5b/5bd19a4b7aeeee709663ed165dc54081ed45dfbbf657527fa26c5fbd89e3e10a-d # internal
mkdir -p $WORK/b042/
cat >$WORK/b042/importcfg << 'EOF' # internal
# import config
packagefile fmt=$WORK/b012/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile os=$WORK/b025/_pkg_.a
packagefile runtime=$WORK/b005/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
packagefile time=$WORK/b030/_pkg_.a
EOF
cd /usr/local/go/src/log
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b042/_pkg_.a -trimpath "$WORK/b042=>" -p log -std -complete -buildid mZUHaICU-YMAazXHhAep/mZUHaICU-YMAazXHhAep -goversion go1.14.1 -D "" -importcfg $WORK/b042/importcfg -pack -c=4 ./log.go
mkdir -p $WORK/b002/
mkdir -p $WORK/b076/
cat >$WORK/b076/importcfg << 'EOF' # internal
# import config
packagefile errors=$WORK/b003/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
EOF
cd /usr/local/go/src/encoding/hex
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b076/_pkg_.a -trimpath "$WORK/b076=>" -p encoding/hex -std -complete -buildid QrD6qChOZ7zHKZ0IL-ux/QrD6qChOZ7zHKZ0IL-ux -goversion go1.14.1 -D "" -importcfg $WORK/b076/importcfg -pack -c=4 ./hex.go
mkdir -p $WORK/b037/
cat >$WORK/b002/importcfg << 'EOF' # internal
# import config
packagefile errors=$WORK/b003/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile os=$WORK/b025/_pkg_.a
packagefile reflect=$WORK/b014/_pkg_.a
packagefile sort=$WORK/b023/_pkg_.a
packagefile strconv=$WORK/b017/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
packagefile time=$WORK/b030/_pkg_.a
EOF
cat >$WORK/b037/importcfg << 'EOF' # internal
# import config
packagefile bufio=$WORK/b036/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile math=$WORK/b015/_pkg_.a
packagefile math/bits=$WORK/b016/_pkg_.a
packagefile sort=$WORK/b023/_pkg_.a
packagefile strconv=$WORK/b017/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
EOF
cd /usr/local/go/src/flag
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b002/_pkg_.a -trimpath "$WORK/b002=>" -p flag -std -complete -buildid uOX_Ydsqil-5yANr5Px5/uOX_Ydsqil-5yANr5Px5 -goversion go1.14.1 -D "" -importcfg $WORK/b002/importcfg -pack -c=4 ./flag.go
cd /usr/local/go/src/compress/flate
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b037/_pkg_.a -trimpath "$WORK/b037=>" -p compress/flate -std -complete -buildid mcdp4fASRaRXpeZzUq0z/mcdp4fASRaRXpeZzUq0z -goversion go1.14.1 -D "" -importcfg $WORK/b037/importcfg -pack -c=4 ./deflate.go ./deflatefast.go ./dict_decoder.go ./huffman_bit_writer.go ./huffman_code.go ./inflate.go ./token.go
mkdir -p $WORK/b055/
cat >$WORK/b055/go_asm.h << 'EOF' # internal
EOF
cd /usr/local/go/src/math/big
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b055=>" -I $WORK/b055/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -gensymabis -o $WORK/b055/symabis ./arith_arm.s
cat >$WORK/b055/importcfg << 'EOF' # internal
# import config
packagefile bytes=$WORK/b034/_pkg_.a
packagefile encoding/binary=$WORK/b038/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile math=$WORK/b015/_pkg_.a
packagefile math/bits=$WORK/b016/_pkg_.a
packagefile math/rand=$WORK/b048/_pkg_.a
packagefile strconv=$WORK/b017/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
EOF
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b055/_pkg_.a -trimpath "$WORK/b055=>" -p math/big -std -buildid EauetSY2ovB-194xwSRj/EauetSY2ovB-194xwSRj -goversion go1.14.1 -symabis $WORK/b055/symabis -D "" -importcfg $WORK/b055/importcfg -pack -asmhdr $WORK/b055/go_asm.h -c=4 ./accuracy_string.go ./arith.go ./arith_decl.go ./decimal.go ./doc.go ./float.go ./floatconv.go ./floatmarsh.go ./ftoa.go ./int.go ./intconv.go ./intmarsh.go ./nat.go ./natconv.go ./prime.go ./rat.go ./ratconv.go ./ratmarsh.go ./roundingmode_string.go ./sqrt.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b081/_pkg_.a # internal
cp $WORK/b081/_pkg_.a /root/.cache/go-build/e7/e76800cd6f28c292610b810e4304b1bc6c5c255a988079986f17e73344ac6895-d # internal
mkdir -p $WORK/b083/
cat >$WORK/b083/importcfg << 'EOF' # internal
# import config
packagefile errors=$WORK/b003/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile sort=$WORK/b023/_pkg_.a
packagefile strconv=$WORK/b017/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
EOF
cd /usr/local/go/src/net/url
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b083/_pkg_.a -trimpath "$WORK/b083=>" -p net/url -std -complete -buildid 1PYgk0dJ6V2rCdfPUXQF/1PYgk0dJ6V2rCdfPUXQF -goversion go1.14.1 -D "" -importcfg $WORK/b083/importcfg -pack -c=4 ./url.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b042/_pkg_.a # internal
cp $WORK/b042/_pkg_.a /root/.cache/go-build/43/4354c78b139f00f4cb74580c54a6ce5ce835a4e174fd40a62df94b054ca3954b-d # internal
mkdir -p $WORK/b088/
cat >$WORK/b088/importcfg << 'EOF' # internal
# import config
packagefile crypto/subtle=$WORK/b054/_pkg_.a
packagefile encoding/binary=$WORK/b038/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
EOF
cd /usr/local/go/src/vendor/golang.org/x/crypto/curve25519
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b088/_pkg_.a -trimpath "$WORK/b088=>" -p vendor/golang.org/x/crypto/curve25519 -std -complete -buildid JjhGj8ekrVDbDjBKewEH/JjhGj8ekrVDbDjBKewEH -goversion go1.14.1 -D "" -importcfg $WORK/b088/importcfg -pack -c=4 ./curve25519.go ./curve25519_generic.go ./curve25519_noasm.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b076/_pkg_.a # internal
cp $WORK/b076/_pkg_.a /root/.cache/go-build/11/11f87aef06942a5d3dfdbd8bca580ef166d55d8b6ae4607ba61d2772f8385ce4-d # internal
mkdir -p $WORK/b094/
cat >$WORK/b094/importcfg << 'EOF' # internal
# import config
packagefile container/list=$WORK/b041/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile log=$WORK/b042/_pkg_.a
packagefile sort=$WORK/b023/_pkg_.a
packagefile unicode/utf8=$WORK/b018/_pkg_.a
EOF
cd /usr/local/go/src/vendor/golang.org/x/text/unicode/bidi
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b094/_pkg_.a -trimpath "$WORK/b094=>" -p vendor/golang.org/x/text/unicode/bidi -std -complete -buildid ZRfijmt1ggY3gQHfYsxO/ZRfijmt1ggY3gQHfYsxO -goversion go1.14.1 -D "" -importcfg $WORK/b094/importcfg -pack -c=4 ./bidi.go ./bracket.go ./core.go ./prop.go ./tables12.0.0.go ./trieval.go
cd /root/go/pkg/mod/golang.org/x/sys@v0.0.0-20200321134203-328b4cd54aae/unix
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b117=>" -I $WORK/b117/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -o $WORK/b117/asm_linux_arm.o ./asm_linux_arm.s
/usr/local/go/pkg/tool/linux_arm64/pack r $WORK/b117/_pkg_.a $WORK/b117/asm_linux_arm.o # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b117/_pkg_.a # internal
cp $WORK/b117/_pkg_.a /root/.cache/go-build/4c/4c93bba2963c8c77dcaddad1f260615da4c520ec1c3fb5b2641d558d94bb7385-d # internal
mkdir -p $WORK/b095/
cat >$WORK/b095/importcfg << 'EOF' # internal
# import config
importmap golang.org/x/text/transform=vendor/golang.org/x/text/transform
packagefile encoding/binary=$WORK/b038/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile vendor/golang.org/x/text/transform=$WORK/b093/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
packagefile unicode/utf8=$WORK/b018/_pkg_.a
EOF
cd /usr/local/go/src/vendor/golang.org/x/text/unicode/norm
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b095/_pkg_.a -trimpath "$WORK/b095=>" -p vendor/golang.org/x/text/unicode/norm -std -complete -buildid HsNNW8_XG9eYTfqDQrPZ/HsNNW8_XG9eYTfqDQrPZ -goversion go1.14.1 -D "" -importcfg $WORK/b095/importcfg -pack -c=4 ./composition.go ./forminfo.go ./input.go ./iter.go ./normalize.go ./readwriter.go ./tables12.0.0.go ./transform.go ./trie.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b002/_pkg_.a # internal
cp $WORK/b002/_pkg_.a /root/.cache/go-build/45/452cb9c84802113f5709ca3473f1e11e8a3da4c3c21393857d1a8cc27ceb8789-d # internal
mkdir -p $WORK/b098/
cat >$WORK/b098/importcfg << 'EOF' # internal
# import config
packagefile bytes=$WORK/b034/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
EOF
cd /usr/local/go/src/vendor/golang.org/x/net/http2/hpack
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b098/_pkg_.a -trimpath "$WORK/b098=>" -p vendor/golang.org/x/net/http2/hpack -std -complete -buildid PM4PSz-5DVgCqvV2MO_i/PM4PSz-5DVgCqvV2MO_i -goversion go1.14.1 -D "" -importcfg $WORK/b098/importcfg -pack -c=4 ./encode.go ./hpack.go ./huffman.go ./tables.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b083/_pkg_.a # internal
cp $WORK/b083/_pkg_.a /root/.cache/go-build/8c/8c74e1b7e882c038c48dab6f71fcec43f586ffbdf9cd5144d5d76e89d27c0bff-d # internal
mkdir -p $WORK/b099/
cat >$WORK/b099/importcfg << 'EOF' # internal
# import config
packagefile bufio=$WORK/b036/_pkg_.a
packagefile bytes=$WORK/b034/_pkg_.a
packagefile encoding/base64=$WORK/b078/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile os=$WORK/b025/_pkg_.a
packagefile sort=$WORK/b023/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
packagefile unicode=$WORK/b022/_pkg_.a
packagefile unicode/utf8=$WORK/b018/_pkg_.a
EOF
cd /usr/local/go/src/mime
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b099/_pkg_.a -trimpath "$WORK/b099=>" -p mime -std -complete -buildid QXLT81e9wrvEOn9zhvab/QXLT81e9wrvEOn9zhvab -goversion go1.14.1 -D "" -importcfg $WORK/b099/importcfg -pack -c=4 ./encodedword.go ./grammar.go ./mediatype.go ./type.go ./type_unix.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b037/_pkg_.a # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b088/_pkg_.a # internal
cp $WORK/b037/_pkg_.a /root/.cache/go-build/77/775cb6c793fd95685d51633b4f7a7f8309ac056fd9c8a2d216b45a0efea228fb-d # internal
cp $WORK/b088/_pkg_.a /root/.cache/go-build/08/083eb5e62797b5d2be6601eb23eb70587212bf1de3e6a860cbb9762a20ad179d-d # internal
mkdir -p $WORK/b101/
cat >$WORK/b101/importcfg << 'EOF' # internal
# import config
packagefile bufio=$WORK/b036/_pkg_.a
packagefile bytes=$WORK/b034/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
EOF
cd /usr/local/go/src/mime/quotedprintable
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b101/_pkg_.a -trimpath "$WORK/b101=>" -p mime/quotedprintable -std -complete -buildid 3W2AGQEMIQF0WGtVkfLY/3W2AGQEMIQF0WGtVkfLY -goversion go1.14.1 -D "" -importcfg $WORK/b101/importcfg -pack -c=4 ./reader.go ./writer.go
mkdir -p $WORK/b035/
cat >$WORK/b035/importcfg << 'EOF' # internal
# import config
packagefile bufio=$WORK/b036/_pkg_.a
packagefile compress/flate=$WORK/b037/_pkg_.a
packagefile encoding/binary=$WORK/b038/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile hash/crc32=$WORK/b039/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile time=$WORK/b030/_pkg_.a
EOF
cd /usr/local/go/src/compress/gzip
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b035/_pkg_.a -trimpath "$WORK/b035=>" -p compress/gzip -std -complete -buildid 9Nv-SqhqPjZ0f78jjYuR/9Nv-SqhqPjZ0f78jjYuR -goversion go1.14.1 -D "" -importcfg $WORK/b035/importcfg -pack -c=4 ./gunzip.go ./gzip.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b094/_pkg_.a # internal
cp $WORK/b094/_pkg_.a /root/.cache/go-build/92/92f311670a462be51fd581418d4584a21bcefdafe7a8dff4f3ff83b06f0acb6a-d # internal
mkdir -p $WORK/b092/
cat >$WORK/b092/importcfg << 'EOF' # internal
# import config
importmap golang.org/x/text/transform=vendor/golang.org/x/text/transform
importmap golang.org/x/text/unicode/bidi=vendor/golang.org/x/text/unicode/bidi
packagefile errors=$WORK/b003/_pkg_.a
packagefile vendor/golang.org/x/text/transform=$WORK/b093/_pkg_.a
packagefile vendor/golang.org/x/text/unicode/bidi=$WORK/b094/_pkg_.a
packagefile unicode/utf8=$WORK/b018/_pkg_.a
EOF
cd /usr/local/go/src/vendor/golang.org/x/text/secure/bidirule
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b092/_pkg_.a -trimpath "$WORK/b092=>" -p vendor/golang.org/x/text/secure/bidirule -std -complete -buildid _-ng77waeJY2BixC9LNj/_-ng77waeJY2BixC9LNj -goversion go1.14.1 -D "" -importcfg $WORK/b092/importcfg -pack -c=4 ./bidirule.go ./bidirule10.0.0.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b101/_pkg_.a # internal
cp $WORK/b101/_pkg_.a /root/.cache/go-build/62/62fe1e50508c9a84958eb456ebb08d06781dc83d6a389e60bd3b1ca155207fb4-d # internal
mkdir -p $WORK/b103/
cat >$WORK/b103/importcfg << 'EOF' # internal
# import config
packagefile bufio=$WORK/b036/_pkg_.a
packagefile bytes=$WORK/b034/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
EOF
cd /usr/local/go/src/net/http/internal
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b103/_pkg_.a -trimpath "$WORK/b103=>" -p net/http/internal -std -complete -buildid oTlz2RNc2nAr0naa7yWP/oTlz2RNc2nAr0naa7yWP -goversion go1.14.1 -D "" -importcfg $WORK/b103/importcfg -pack -c=4 ./chunked.go ./testcert.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b098/_pkg_.a # internal
cp $WORK/b098/_pkg_.a /root/.cache/go-build/1b/1bea5b03b56b04f48d0101cc48855c958ede67a98132d3e5899f61e2ed7b6b15-d # internal
mkdir -p $WORK/b107/
cat >$WORK/b107/importcfg << 'EOF' # internal
# import config
packagefile bytes=$WORK/b034/_pkg_.a
packagefile encoding=$WORK/b108/_pkg_.a
packagefile encoding/base64=$WORK/b078/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile math=$WORK/b015/_pkg_.a
packagefile reflect=$WORK/b014/_pkg_.a
packagefile sort=$WORK/b023/_pkg_.a
packagefile strconv=$WORK/b017/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
packagefile unicode=$WORK/b022/_pkg_.a
packagefile unicode/utf16=$WORK/b064/_pkg_.a
packagefile unicode/utf8=$WORK/b018/_pkg_.a
EOF
cd /usr/local/go/src/encoding/json
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b107/_pkg_.a -trimpath "$WORK/b107=>" -p encoding/json -std -complete -buildid GpzU44CyVMORrLgf9A1F/GpzU44CyVMORrLgf9A1F -goversion go1.14.1 -D "" -importcfg $WORK/b107/importcfg -pack -c=4 ./decode.go ./encode.go ./fold.go ./indent.go ./scanner.go ./stream.go ./tables.go ./tags.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b035/_pkg_.a # internal
cp $WORK/b035/_pkg_.a /root/.cache/go-build/05/0573251babd4205d1d28980f26bd97ff68928e8aa4b494379f733fc58734a293-d # internal
mkdir -p $WORK/b116/
cat >$WORK/b116/importcfg << 'EOF' # internal
# import config
packagefile errors=$WORK/b003/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile golang.org/x/sys/unix=$WORK/b117/_pkg_.a
packagefile os=$WORK/b025/_pkg_.a
packagefile time=$WORK/b030/_pkg_.a
EOF
cd /root/go/pkg/mod/github.com/tarm/serial@v0.0.0-20180830185346-98f6abe2eb07
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b116/_pkg_.a -trimpath "$WORK/b116=>" -p github.com/tarm/serial -complete -buildid ghlRzqgHghv_PDKlTscG/ghlRzqgHghv_PDKlTscG -goversion go1.14.1 -D "" -importcfg $WORK/b116/importcfg -pack -c=4 ./serial.go ./serial_linux.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b092/_pkg_.a # internal
cp $WORK/b092/_pkg_.a /root/.cache/go-build/73/73a1c7ef3fdb19af548900e57a72d87566c2304c5cf5c7e8f878a1bfef288e0a-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b043/_pkg_.a # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b099/_pkg_.a # internal
cp $WORK/b099/_pkg_.a /root/.cache/go-build/a3/a316da10349c420ad6ba1a202d331f6a1793f9721e6a53f7bc84f03d8758eb45-d # internal
cp $WORK/b043/_pkg_.a /root/.cache/go-build/e2/e2de5767499f3a849374895ec00097a331b15e170e5a5cca96624498f11c716c-d # internal
mkdir -p $WORK/b096/
cat >$WORK/b096/importcfg << 'EOF' # internal
# import config
packagefile bufio=$WORK/b036/_pkg_.a
packagefile bytes=$WORK/b034/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile io/ioutil=$WORK/b081/_pkg_.a
packagefile net=$WORK/b043/_pkg_.a
packagefile strconv=$WORK/b017/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
EOF
cd /usr/local/go/src/net/textproto
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b096/_pkg_.a -trimpath "$WORK/b096=>" -p net/textproto -std -complete -buildid IBStXs5UoEXkfk3YS-hi/IBStXs5UoEXkfk3YS-hi -goversion go1.14.1 -D "" -importcfg $WORK/b096/importcfg -pack -c=4 ./header.go ./pipeline.go ./reader.go ./textproto.go ./writer.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b103/_pkg_.a # internal
cp $WORK/b103/_pkg_.a /root/.cache/go-build/08/08aa135f472d8668f1ebd9a31b49346fd8ed067e2b713ba774df96933e36b159-d # internal
cd /usr/local/go/src/math/big
/usr/local/go/pkg/tool/linux_arm64/asm -trimpath "$WORK/b055=>" -I $WORK/b055/ -I /usr/local/go/pkg/include -D GOOS_linux -D GOARCH_arm -o $WORK/b055/arith_arm.o ./arith_arm.s
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b095/_pkg_.a # internal
cp $WORK/b095/_pkg_.a /root/.cache/go-build/f8/f8766ab315242b6b1e0f7d5d2f2a68c07cfd7c299d611ad1beacffdd33842f46-d # internal
mkdir -p $WORK/b091/
cat >$WORK/b091/importcfg << 'EOF' # internal
# import config
importmap golang.org/x/text/secure/bidirule=vendor/golang.org/x/text/secure/bidirule
importmap golang.org/x/text/unicode/bidi=vendor/golang.org/x/text/unicode/bidi
importmap golang.org/x/text/unicode/norm=vendor/golang.org/x/text/unicode/norm
packagefile fmt=$WORK/b012/_pkg_.a
packagefile vendor/golang.org/x/text/secure/bidirule=$WORK/b092/_pkg_.a
packagefile vendor/golang.org/x/text/unicode/bidi=$WORK/b094/_pkg_.a
packagefile vendor/golang.org/x/text/unicode/norm=$WORK/b095/_pkg_.a
packagefile math=$WORK/b015/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
packagefile unicode/utf8=$WORK/b018/_pkg_.a
EOF
cd /usr/local/go/src/vendor/golang.org/x/net/idna
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b091/_pkg_.a -trimpath "$WORK/b091=>" -p vendor/golang.org/x/net/idna -std -complete -buildid zxPsFs7N8KWZx8dn0FdQ/zxPsFs7N8KWZx8dn0FdQ -goversion go1.14.1 -D "" -importcfg $WORK/b091/importcfg -pack -c=4 ./idna10.0.0.go ./punycode.go ./tables12.00.go ./trie.go ./trieval.go
cd /usr/local/go/src/math/big
/usr/local/go/pkg/tool/linux_arm64/pack r $WORK/b055/_pkg_.a $WORK/b055/arith_arm.o # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b055/_pkg_.a # internal
cp $WORK/b055/_pkg_.a /root/.cache/go-build/3e/3e066ca8f325b59d1576dfe33bbc1d77379b4979f121e68fe3838904e86ab3cb-d # internal
mkdir -p $WORK/b074/
cat >$WORK/b074/importcfg << 'EOF' # internal
# import config
packagefile crypto/internal/randutil=$WORK/b061/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile math/big=$WORK/b055/_pkg_.a
EOF
mkdir -p $WORK/b063/
cd /usr/local/go/src/crypto/dsa
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b074/_pkg_.a -trimpath "$WORK/b074=>" -p crypto/dsa -std -complete -buildid RZLTcM7HLzrL6kVn_Ykz/RZLTcM7HLzrL6kVn_Ykz -goversion go1.14.1 -D "" -importcfg $WORK/b074/importcfg -pack -c=4 ./dsa.go
mkdir -p $WORK/b060/
cat >$WORK/b060/importcfg << 'EOF' # internal
# import config
packagefile io=$WORK/b024/_pkg_.a
packagefile math/big=$WORK/b055/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
EOF
cat >$WORK/b063/importcfg << 'EOF' # internal
# import config
packagefile errors=$WORK/b003/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile math=$WORK/b015/_pkg_.a
packagefile math/big=$WORK/b055/_pkg_.a
packagefile reflect=$WORK/b014/_pkg_.a
packagefile strconv=$WORK/b017/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
packagefile time=$WORK/b030/_pkg_.a
packagefile unicode/utf16=$WORK/b064/_pkg_.a
packagefile unicode/utf8=$WORK/b018/_pkg_.a
EOF
cd /usr/local/go/src/crypto/elliptic
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b060/_pkg_.a -trimpath "$WORK/b060=>" -p crypto/elliptic -std -complete -buildid obK98jI6PjH1HG-kZn1_/obK98jI6PjH1HG-kZn1_ -goversion go1.14.1 -D "" -importcfg $WORK/b060/importcfg -pack -c=4 ./elliptic.go ./p224.go ./p256.go ./p256_generic.go
mkdir -p $WORK/b050/
cd /usr/local/go/src/encoding/asn1
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b063/_pkg_.a -trimpath "$WORK/b063=>" -p encoding/asn1 -std -complete -buildid K_hGQ_iXKbvlLxnf2nb1/K_hGQ_iXKbvlLxnf2nb1 -goversion go1.14.1 -D "" -importcfg $WORK/b063/importcfg -pack -c=4 ./asn1.go ./common.go ./marshal.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b116/_pkg_.a # internal
cat >$WORK/b050/importcfg << 'EOF' # internal
# import config
packagefile bufio=$WORK/b036/_pkg_.a
packagefile crypto/aes=$WORK/b051/_pkg_.a
packagefile crypto/cipher=$WORK/b052/_pkg_.a
packagefile encoding/binary=$WORK/b038/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile internal/syscall/unix=$WORK/b028/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile math/big=$WORK/b055/_pkg_.a
packagefile os=$WORK/b025/_pkg_.a
packagefile runtime=$WORK/b005/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
packagefile sync/atomic=$WORK/b021/_pkg_.a
packagefile syscall=$WORK/b029/_pkg_.a
packagefile time=$WORK/b030/_pkg_.a
EOF
cd /usr/local/go/src/crypto/rand
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b050/_pkg_.a -trimpath "$WORK/b050=>" -p crypto/rand -std -complete -buildid dmvctuE9r8zI6fAixHWY/dmvctuE9r8zI6fAixHWY -goversion go1.14.1 -D "" -importcfg $WORK/b050/importcfg -pack -c=4 ./eagain.go ./rand.go ./rand_batched.go ./rand_linux.go ./rand_unix.go ./util.go
cp $WORK/b116/_pkg_.a /root/.cache/go-build/26/26ad523bd12abf36c87b0995e25016744e8ed452299b86c1405d5029a86c2f54-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b096/_pkg_.a # internal
cp $WORK/b096/_pkg_.a /root/.cache/go-build/51/516601b034df31543898fcd738e3805694d55ac4e589a492802fbe1228309cc5-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b074/_pkg_.a # internal
cp $WORK/b074/_pkg_.a /root/.cache/go-build/81/8105d999320e5f293f38a93442c12a205e46fc613d5e226a3354340dd3dac658-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b050/_pkg_.a # internal
cp $WORK/b050/_pkg_.a /root/.cache/go-build/45/454e5ce2c5ad376c886e27bc8a35e3a3896fad40400e156dff0832479d725c60-d # internal
mkdir -p $WORK/b065/
cat >$WORK/b065/importcfg << 'EOF' # internal
# import config
packagefile bytes=$WORK/b034/_pkg_.a
packagefile crypto=$WORK/b057/_pkg_.a
packagefile crypto/ed25519/internal/edwards25519=$WORK/b066/_pkg_.a
packagefile crypto/rand=$WORK/b050/_pkg_.a
packagefile crypto/sha512=$WORK/b062/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile strconv=$WORK/b017/_pkg_.a
EOF
mkdir -p $WORK/b100/
cd /usr/local/go/src/crypto/ed25519
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b065/_pkg_.a -trimpath "$WORK/b065=>" -p crypto/ed25519 -std -complete -buildid 7RYc6i4ig5FDrQTrwsLq/7RYc6i4ig5FDrQTrwsLq -goversion go1.14.1 -D "" -importcfg $WORK/b065/importcfg -pack -c=4 ./ed25519.go
cat >$WORK/b100/importcfg << 'EOF' # internal
# import config
packagefile bufio=$WORK/b036/_pkg_.a
packagefile bytes=$WORK/b034/_pkg_.a
packagefile crypto/rand=$WORK/b050/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile io/ioutil=$WORK/b081/_pkg_.a
packagefile mime=$WORK/b099/_pkg_.a
packagefile mime/quotedprintable=$WORK/b101/_pkg_.a
packagefile net/textproto=$WORK/b096/_pkg_.a
packagefile os=$WORK/b025/_pkg_.a
packagefile sort=$WORK/b023/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
EOF
cd /usr/local/go/src/mime/multipart
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b100/_pkg_.a -trimpath "$WORK/b100=>" -p mime/multipart -std -complete -buildid 2QuAMb7Nrsss4ERTFYbP/2QuAMb7Nrsss4ERTFYbP -goversion go1.14.1 -D "" -importcfg $WORK/b100/importcfg -pack -c=4 ./formdata.go ./multipart.go ./writer.go
mkdir -p $WORK/b070/
cat >$WORK/b070/importcfg << 'EOF' # internal
# import config
packagefile bytes=$WORK/b034/_pkg_.a
packagefile crypto=$WORK/b057/_pkg_.a
packagefile crypto/internal/randutil=$WORK/b061/_pkg_.a
packagefile crypto/rand=$WORK/b050/_pkg_.a
packagefile crypto/subtle=$WORK/b054/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile hash=$WORK/b040/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile math=$WORK/b015/_pkg_.a
packagefile math/big=$WORK/b055/_pkg_.a
EOF
cd /usr/local/go/src/crypto/rsa
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b070/_pkg_.a -trimpath "$WORK/b070=>" -p crypto/rsa -std -complete -buildid Wz6YSn8YTCyo6boW0LOK/Wz6YSn8YTCyo6boW0LOK -goversion go1.14.1 -D "" -importcfg $WORK/b070/importcfg -pack -c=4 ./pkcs1v15.go ./pss.go ./rsa.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b107/_pkg_.a # internal
cp $WORK/b107/_pkg_.a /root/.cache/go-build/d9/d91fa7232b54cf7138638f3d31dd42e609cb3f5baee58d3d1c1a497d0b4b951d-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b091/_pkg_.a # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b060/_pkg_.a # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b063/_pkg_.a # internal
cp $WORK/b091/_pkg_.a /root/.cache/go-build/4d/4d05ee4a0e302ee114d8be3782e9b830a1a45d8804357384d45fc9dbb3975e98-d # internal
mkdir -p $WORK/b097/
mkdir -p $WORK/b090/
cat >$WORK/b097/importcfg << 'EOF' # internal
# import config
importmap golang.org/x/net/idna=vendor/golang.org/x/net/idna
packagefile errors=$WORK/b003/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile vendor/golang.org/x/net/idna=$WORK/b091/_pkg_.a
packagefile net=$WORK/b043/_pkg_.a
packagefile net/url=$WORK/b083/_pkg_.a
packagefile os=$WORK/b025/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
packagefile unicode/utf8=$WORK/b018/_pkg_.a
EOF
cat >$WORK/b090/importcfg << 'EOF' # internal
# import config
importmap golang.org/x/net/idna=vendor/golang.org/x/net/idna
packagefile vendor/golang.org/x/net/idna=$WORK/b091/_pkg_.a
packagefile net=$WORK/b043/_pkg_.a
packagefile net/textproto=$WORK/b096/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
packagefile unicode/utf8=$WORK/b018/_pkg_.a
EOF
cd /usr/local/go/src/vendor/golang.org/x/net/http/httpproxy
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b097/_pkg_.a -trimpath "$WORK/b097=>" -p vendor/golang.org/x/net/http/httpproxy -std -complete -buildid NelFgA8TECcW8B660y3V/NelFgA8TECcW8B660y3V -goversion go1.14.1 -D "" -importcfg $WORK/b097/importcfg -pack -c=4 ./proxy.go
cd /usr/local/go/src/vendor/golang.org/x/net/http/httpguts
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b090/_pkg_.a -trimpath "$WORK/b090=>" -p vendor/golang.org/x/net/http/httpguts -std -complete -buildid yBQ3bZLQcv07LFI55--t/yBQ3bZLQcv07LFI55--t -goversion go1.14.1 -D "" -importcfg $WORK/b090/importcfg -pack -c=4 ./guts.go ./httplex.go
cp $WORK/b060/_pkg_.a /root/.cache/go-build/5c/5c661311362c4c6893a24a402fdc88bf352489809759b9dad3d7f174e1641a5d-d # internal
cp $WORK/b063/_pkg_.a /root/.cache/go-build/d8/d80897f59992c69cb9a83f24fd77f2424bd97a84151ede0aa94a7fe921cdaca0-d # internal
mkdir -p $WORK/b075/
mkdir -p $WORK/b059/
mkdir -p $WORK/b079/
cat >$WORK/b075/importcfg << 'EOF' # internal
# import config
packagefile encoding/asn1=$WORK/b063/_pkg_.a
packagefile encoding/hex=$WORK/b076/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile math/big=$WORK/b055/_pkg_.a
packagefile time=$WORK/b030/_pkg_.a
EOF
cat >$WORK/b059/importcfg << 'EOF' # internal
# import config
packagefile crypto=$WORK/b057/_pkg_.a
packagefile crypto/aes=$WORK/b051/_pkg_.a
packagefile crypto/cipher=$WORK/b052/_pkg_.a
packagefile crypto/elliptic=$WORK/b060/_pkg_.a
packagefile crypto/internal/randutil=$WORK/b061/_pkg_.a
packagefile crypto/sha512=$WORK/b062/_pkg_.a
packagefile encoding/asn1=$WORK/b063/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile math/big=$WORK/b055/_pkg_.a
EOF
cat >$WORK/b079/importcfg << 'EOF' # internal
# import config
importmap golang.org/x/crypto/cryptobyte/asn1=vendor/golang.org/x/crypto/cryptobyte/asn1
packagefile encoding/asn1=$WORK/b063/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile vendor/golang.org/x/crypto/cryptobyte/asn1=$WORK/b080/_pkg_.a
packagefile math/big=$WORK/b055/_pkg_.a
packagefile reflect=$WORK/b014/_pkg_.a
packagefile time=$WORK/b030/_pkg_.a
EOF
cd /usr/local/go/src/crypto/x509/pkix
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b075/_pkg_.a -trimpath "$WORK/b075=>" -p crypto/x509/pkix -std -complete -buildid bE6NJbL15hkSLJ6ByGCc/bE6NJbL15hkSLJ6ByGCc -goversion go1.14.1 -D "" -importcfg $WORK/b075/importcfg -pack -c=4 ./pkix.go
cd /usr/local/go/src/vendor/golang.org/x/crypto/cryptobyte
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b079/_pkg_.a -trimpath "$WORK/b079=>" -p vendor/golang.org/x/crypto/cryptobyte -std -complete -buildid lfscaiY8xN0oix49wDib/lfscaiY8xN0oix49wDib -goversion go1.14.1 -D "" -importcfg $WORK/b079/importcfg -pack -c=4 ./asn1.go ./builder.go ./string.go
cd /usr/local/go/src/crypto/ecdsa
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b059/_pkg_.a -trimpath "$WORK/b059=>" -p crypto/ecdsa -std -complete -buildid gpY2JHZWUHY8DEjeyzw6/gpY2JHZWUHY8DEjeyzw6 -goversion go1.14.1 -D "" -importcfg $WORK/b059/importcfg -pack -c=4 ./ecdsa.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b065/_pkg_.a # internal
cp $WORK/b065/_pkg_.a /root/.cache/go-build/64/64e762acce73642592c8acc35d887915a4f97440e2b15d8d4c6383548f326459-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b090/_pkg_.a # internal
cp $WORK/b090/_pkg_.a /root/.cache/go-build/e6/e6529bebe3913ee3256c0a4d6537c4252afe886ca7127247a0ee312f819780f7-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b100/_pkg_.a # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b070/_pkg_.a # internal
cp $WORK/b100/_pkg_.a /root/.cache/go-build/b4/b4de93809fa3ebb700a951686ee37eeef54e78c89ed1e8b197da5a3d39512018-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b097/_pkg_.a # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b075/_pkg_.a # internal
cp $WORK/b097/_pkg_.a /root/.cache/go-build/8b/8b973d6f5a0213e1180e557e9dd65f003bc572a250da3fe3de6595523badafee-d # internal
cp $WORK/b070/_pkg_.a /root/.cache/go-build/ff/ff38b597745658b76bfd11e6d57842cdf16999c16549f5a4ffbe4d02fe6bb68d-d # internal
cp $WORK/b075/_pkg_.a /root/.cache/go-build/24/24db373e3e801dfd6cb7e9bb711c9b5993b280de6845113125cbe740cb449f3a-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b059/_pkg_.a # internal
cp $WORK/b059/_pkg_.a /root/.cache/go-build/e9/e9c5e78d036fdc85bd92eb455b6cda8c53f6b92fd9a6d87dd1e26d387bb41452-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b079/_pkg_.a # internal
cp $WORK/b079/_pkg_.a /root/.cache/go-build/99/996288407c65a95822501ea1c7cb5f672d0a667500b16e2ae4ae562af73b381c-d # internal
mkdir -p $WORK/b073/
cat >$WORK/b073/importcfg << 'EOF' # internal
# import config
importmap golang.org/x/crypto/cryptobyte=vendor/golang.org/x/crypto/cryptobyte
importmap golang.org/x/crypto/cryptobyte/asn1=vendor/golang.org/x/crypto/cryptobyte/asn1
packagefile bytes=$WORK/b034/_pkg_.a
packagefile crypto=$WORK/b057/_pkg_.a
packagefile crypto/aes=$WORK/b051/_pkg_.a
packagefile crypto/cipher=$WORK/b052/_pkg_.a
packagefile crypto/des=$WORK/b058/_pkg_.a
packagefile crypto/dsa=$WORK/b074/_pkg_.a
packagefile crypto/ecdsa=$WORK/b059/_pkg_.a
packagefile crypto/ed25519=$WORK/b065/_pkg_.a
packagefile crypto/elliptic=$WORK/b060/_pkg_.a
packagefile crypto/md5=$WORK/b068/_pkg_.a
packagefile crypto/rsa=$WORK/b070/_pkg_.a
packagefile crypto/sha1=$WORK/b071/_pkg_.a
packagefile crypto/sha256=$WORK/b072/_pkg_.a
packagefile crypto/sha512=$WORK/b062/_pkg_.a
packagefile crypto/x509/pkix=$WORK/b075/_pkg_.a
packagefile encoding/asn1=$WORK/b063/_pkg_.a
packagefile encoding/hex=$WORK/b076/_pkg_.a
packagefile encoding/pem=$WORK/b077/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile vendor/golang.org/x/crypto/cryptobyte=$WORK/b079/_pkg_.a
packagefile vendor/golang.org/x/crypto/cryptobyte/asn1=$WORK/b080/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile io/ioutil=$WORK/b081/_pkg_.a
packagefile math/big=$WORK/b055/_pkg_.a
packagefile net=$WORK/b043/_pkg_.a
packagefile net/url=$WORK/b083/_pkg_.a
packagefile os=$WORK/b025/_pkg_.a
packagefile reflect=$WORK/b014/_pkg_.a
packagefile runtime=$WORK/b005/_pkg_.a
packagefile strconv=$WORK/b017/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
packagefile time=$WORK/b030/_pkg_.a
packagefile unicode/utf8=$WORK/b018/_pkg_.a
EOF
cd /usr/local/go/src/crypto/x509
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b073/_pkg_.a -trimpath "$WORK/b073=>" -p crypto/x509 -std -complete -buildid PKn4DR5KaSKcS3iHvDIE/PKn4DR5KaSKcS3iHvDIE -goversion go1.14.1 -D "" -importcfg $WORK/b073/importcfg -pack -c=4 ./cert_pool.go ./pem_decrypt.go ./pkcs1.go ./pkcs8.go ./root.go ./root_linux.go ./root_unix.go ./sec1.go ./verify.go ./x509.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b073/_pkg_.a # internal
cp $WORK/b073/_pkg_.a /root/.cache/go-build/55/553b7f8b48d68f451966a111d9423edfc66457020b83a840187b2d3935b599b9-d # internal
mkdir -p $WORK/b056/
cat >$WORK/b056/importcfg << 'EOF' # internal
# import config
importmap golang.org/x/crypto/chacha20poly1305=vendor/golang.org/x/crypto/chacha20poly1305
importmap golang.org/x/crypto/cryptobyte=vendor/golang.org/x/crypto/cryptobyte
importmap golang.org/x/crypto/curve25519=vendor/golang.org/x/crypto/curve25519
importmap golang.org/x/crypto/hkdf=vendor/golang.org/x/crypto/hkdf
packagefile bytes=$WORK/b034/_pkg_.a
packagefile container/list=$WORK/b041/_pkg_.a
packagefile crypto=$WORK/b057/_pkg_.a
packagefile crypto/aes=$WORK/b051/_pkg_.a
packagefile crypto/cipher=$WORK/b052/_pkg_.a
packagefile crypto/des=$WORK/b058/_pkg_.a
packagefile crypto/ecdsa=$WORK/b059/_pkg_.a
packagefile crypto/ed25519=$WORK/b065/_pkg_.a
packagefile crypto/elliptic=$WORK/b060/_pkg_.a
packagefile crypto/hmac=$WORK/b067/_pkg_.a
packagefile crypto/md5=$WORK/b068/_pkg_.a
packagefile crypto/rand=$WORK/b050/_pkg_.a
packagefile crypto/rc4=$WORK/b069/_pkg_.a
packagefile crypto/rsa=$WORK/b070/_pkg_.a
packagefile crypto/sha1=$WORK/b071/_pkg_.a
packagefile crypto/sha256=$WORK/b072/_pkg_.a
packagefile crypto/sha512=$WORK/b062/_pkg_.a
packagefile crypto/subtle=$WORK/b054/_pkg_.a
packagefile crypto/x509=$WORK/b073/_pkg_.a
packagefile encoding/asn1=$WORK/b063/_pkg_.a
packagefile encoding/pem=$WORK/b077/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile vendor/golang.org/x/crypto/chacha20poly1305=$WORK/b084/_pkg_.a
packagefile vendor/golang.org/x/crypto/cryptobyte=$WORK/b079/_pkg_.a
packagefile vendor/golang.org/x/crypto/curve25519=$WORK/b088/_pkg_.a
packagefile vendor/golang.org/x/crypto/hkdf=$WORK/b089/_pkg_.a
packagefile hash=$WORK/b040/_pkg_.a
packagefile internal/cpu=$WORK/b007/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile io/ioutil=$WORK/b081/_pkg_.a
packagefile math/big=$WORK/b055/_pkg_.a
packagefile net=$WORK/b043/_pkg_.a
packagefile strconv=$WORK/b017/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
packagefile sync/atomic=$WORK/b021/_pkg_.a
packagefile time=$WORK/b030/_pkg_.a
EOF
cd /usr/local/go/src/crypto/tls
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b056/_pkg_.a -trimpath "$WORK/b056=>" -p crypto/tls -std -complete -buildid iMp2taD0zQ2sjtORhcU8/iMp2taD0zQ2sjtORhcU8 -goversion go1.14.1 -D "" -importcfg $WORK/b056/importcfg -pack -c=4 ./alert.go ./auth.go ./cipher_suites.go ./common.go ./conn.go ./handshake_client.go ./handshake_client_tls13.go ./handshake_messages.go ./handshake_server.go ./handshake_server_tls13.go ./key_agreement.go ./key_schedule.go ./prf.go ./ticket.go ./tls.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b056/_pkg_.a # internal
cp $WORK/b056/_pkg_.a /root/.cache/go-build/f9/f908a1e48071bab9799ebc9134b8c83ddac0cb72f8b2a5d98efb66e4315a10fd-d # internal
mkdir -p $WORK/b102/
cat >$WORK/b102/importcfg << 'EOF' # internal
# import config
packagefile context=$WORK/b044/_pkg_.a
packagefile crypto/tls=$WORK/b056/_pkg_.a
packagefile internal/nettrace=$WORK/b046/_pkg_.a
packagefile net=$WORK/b043/_pkg_.a
packagefile net/textproto=$WORK/b096/_pkg_.a
packagefile reflect=$WORK/b014/_pkg_.a
packagefile time=$WORK/b030/_pkg_.a
EOF
cd /usr/local/go/src/net/http/httptrace
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b102/_pkg_.a -trimpath "$WORK/b102=>" -p net/http/httptrace -std -complete -buildid hlTJSiGPLEbD6Cl9X9Gm/hlTJSiGPLEbD6Cl9X9Gm -goversion go1.14.1 -D "" -importcfg $WORK/b102/importcfg -pack -c=4 ./trace.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b102/_pkg_.a # internal
cp $WORK/b102/_pkg_.a /root/.cache/go-build/6d/6dc3f5c5d5c1e9eac4f4e3dcf5ee915c634b522499a7af7fd03ba34737ea1a99-d # internal
mkdir -p $WORK/b049/
cat >$WORK/b049/importcfg << 'EOF' # internal
# import config
importmap golang.org/x/net/http/httpguts=vendor/golang.org/x/net/http/httpguts
importmap golang.org/x/net/http/httpproxy=vendor/golang.org/x/net/http/httpproxy
importmap golang.org/x/net/http2/hpack=vendor/golang.org/x/net/http2/hpack
importmap golang.org/x/net/idna=vendor/golang.org/x/net/idna
packagefile bufio=$WORK/b036/_pkg_.a
packagefile bytes=$WORK/b034/_pkg_.a
packagefile compress/gzip=$WORK/b035/_pkg_.a
packagefile container/list=$WORK/b041/_pkg_.a
packagefile context=$WORK/b044/_pkg_.a
packagefile crypto/rand=$WORK/b050/_pkg_.a
packagefile crypto/tls=$WORK/b056/_pkg_.a
packagefile encoding/base64=$WORK/b078/_pkg_.a
packagefile encoding/binary=$WORK/b038/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile vendor/golang.org/x/net/http/httpguts=$WORK/b090/_pkg_.a
packagefile vendor/golang.org/x/net/http/httpproxy=$WORK/b097/_pkg_.a
packagefile vendor/golang.org/x/net/http2/hpack=$WORK/b098/_pkg_.a
packagefile vendor/golang.org/x/net/idna=$WORK/b091/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile io/ioutil=$WORK/b081/_pkg_.a
packagefile log=$WORK/b042/_pkg_.a
packagefile math=$WORK/b015/_pkg_.a
packagefile math/rand=$WORK/b048/_pkg_.a
packagefile mime=$WORK/b099/_pkg_.a
packagefile mime/multipart=$WORK/b100/_pkg_.a
packagefile net=$WORK/b043/_pkg_.a
packagefile net/http/httptrace=$WORK/b102/_pkg_.a
packagefile net/http/internal=$WORK/b103/_pkg_.a
packagefile net/textproto=$WORK/b096/_pkg_.a
packagefile net/url=$WORK/b083/_pkg_.a
packagefile os=$WORK/b025/_pkg_.a
packagefile path=$WORK/b104/_pkg_.a
packagefile path/filepath=$WORK/b082/_pkg_.a
packagefile reflect=$WORK/b014/_pkg_.a
packagefile runtime=$WORK/b005/_pkg_.a
packagefile sort=$WORK/b023/_pkg_.a
packagefile strconv=$WORK/b017/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
packagefile sync/atomic=$WORK/b021/_pkg_.a
packagefile time=$WORK/b030/_pkg_.a
packagefile unicode/utf8=$WORK/b018/_pkg_.a
EOF
cd /usr/local/go/src/net/http
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b049/_pkg_.a -trimpath "$WORK/b049=>" -p net/http -std -complete -buildid MVCzgIO86kkD1F0ycbT2/MVCzgIO86kkD1F0ycbT2 -goversion go1.14.1 -D "" -importcfg $WORK/b049/importcfg -pack -c=4 ./client.go ./clone.go ./cookie.go ./doc.go ./filetransport.go ./fs.go ./h2_bundle.go ./header.go ./http.go ./jar.go ./method.go ./request.go ./response.go ./roundtrip.go ./server.go ./sniff.go ./socks_bundle.go ./status.go ./transfer.go ./transport.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b049/_pkg_.a # internal
cp $WORK/b049/_pkg_.a /root/.cache/go-build/e5/e5f365b21a254c0f5137e76a3ebb2309367da9b0b9aae4d1693bb27ce9274085-d # internal
mkdir -p $WORK/b033/
cat >$WORK/b033/importcfg << 'EOF' # internal
# import config
packagefile bytes=$WORK/b034/_pkg_.a
packagefile compress/gzip=$WORK/b035/_pkg_.a
packagefile container/list=$WORK/b041/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile log=$WORK/b042/_pkg_.a
packagefile net=$WORK/b043/_pkg_.a
packagefile net/http=$WORK/b049/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
packagefile time=$WORK/b030/_pkg_.a
EOF
cd /root/go/pkg/mod/gopkg.in/antage/eventsource.v1@v1.0.0-20150318155416-803f4c5af225
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b033/_pkg_.a -trimpath "$WORK/b033=>" -p gopkg.in/antage/eventsource.v1 -complete -buildid GbA5Nls1hO9pd8vJTYIP/GbA5Nls1hO9pd8vJTYIP -goversion go1.14.1 -D "" -importcfg $WORK/b033/importcfg -pack -c=4 ./consumer.go ./doc.go ./eventsource.go
mkdir -p $WORK/b111/
cat >$WORK/b111/importcfg << 'EOF' # internal
# import config
packagefile bufio=$WORK/b036/_pkg_.a
packagefile crypto/md5=$WORK/b068/_pkg_.a
packagefile crypto/rand=$WORK/b050/_pkg_.a
packagefile encoding/json=$WORK/b107/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile io/ioutil=$WORK/b081/_pkg_.a
packagefile log=$WORK/b042/_pkg_.a
packagefile net/http=$WORK/b049/_pkg_.a
packagefile os=$WORK/b025/_pkg_.a
packagefile path=$WORK/b104/_pkg_.a
packagefile path/filepath=$WORK/b082/_pkg_.a
packagefile strconv=$WORK/b017/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
packagefile time=$WORK/b030/_pkg_.a
EOF
cd /mnt/ProjectName/util
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b111/_pkg_.a -trimpath "$WORK/b111=>" -p ProjectName/util -lang=go1.14 -complete -buildid 2EMQET_5MmCvuUKZZXRl/2EMQET_5MmCvuUKZZXRl -goversion go1.14.1 -D "" -importcfg $WORK/b111/importcfg -pack -c=4 ./iso4217.go ./logging.go ./util.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b033/_pkg_.a # internal
cp $WORK/b033/_pkg_.a /root/.cache/go-build/a9/a9fec3e0e1b37ebbc24e6ac9e7927ce02d41049d5e27ef142c65bc2641098d72-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b111/_pkg_.a # internal
cp $WORK/b111/_pkg_.a /root/.cache/go-build/4e/4e112326aa6381a6c1375b05fd18b9d34f09ddafc04f93694286b9e4d77f04fc-d # internal
mkdir -p $WORK/b114/
cat >$WORK/b114/importcfg << 'EOF' # internal
# import config
packagefile encoding/json=$WORK/b107/_pkg_.a
packagefile gopkg.in/antage/eventsource.v1=$WORK/b033/_pkg_.a
packagefile ProjectName/util=$WORK/b111/_pkg_.a
EOF
cd /mnt/ProjectName/event
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b114/_pkg_.a -trimpath "$WORK/b114=>" -p ProjectName/event -lang=go1.14 -complete -buildid zJg0aIdWj8G7BH3wSoyt/zJg0aIdWj8G7BH3wSoyt -goversion go1.14.1 -D "" -importcfg $WORK/b114/importcfg -pack -c=4 ./event.go
mkdir -p $WORK/b106/
cat >$WORK/b106/importcfg << 'EOF' # internal
# import config
packagefile crypto=$WORK/b057/_pkg_.a
packagefile crypto/rsa=$WORK/b070/_pkg_.a
packagefile crypto/sha256=$WORK/b072/_pkg_.a
packagefile crypto/tls=$WORK/b056/_pkg_.a
packagefile crypto/x509=$WORK/b073/_pkg_.a
packagefile encoding/base64=$WORK/b078/_pkg_.a
packagefile encoding/json=$WORK/b107/_pkg_.a
packagefile encoding/pem=$WORK/b077/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile os=$WORK/b025/_pkg_.a
packagefile path=$WORK/b104/_pkg_.a
packagefile path/filepath=$WORK/b082/_pkg_.a
packagefile regexp=$WORK/b109/_pkg_.a
packagefile ProjectName/util=$WORK/b111/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
packagefile time=$WORK/b030/_pkg_.a
EOF
cd /mnt/ProjectName/config
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b106/_pkg_.a -trimpath "$WORK/b106=>" -p ProjectName/config -lang=go1.14 -complete -buildid e44X-1E1RPzt5I5PRCsu/e44X-1E1RPzt5I5PRCsu -goversion go1.14.1 -D "" -importcfg $WORK/b106/importcfg -pack -c=4 ./config.go ./device_type.go ./licence.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b114/_pkg_.a # internal
cp $WORK/b114/_pkg_.a /root/.cache/go-build/25/259b1792f09cb119a109a1c935aaee247ff8cc883223b5b0e3e39a5dffdf8775-d # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b106/_pkg_.a # internal
cp $WORK/b106/_pkg_.a /root/.cache/go-build/5c/5c51d43660215eff26261d2bff117bd23b4e8884a399d1e94dac7ee918087309-d # internal
mkdir -p $WORK/b115/
cat >$WORK/b115/importcfg << 'EOF' # internal
# import config
packagefile bytes=$WORK/b034/_pkg_.a
packagefile encoding/hex=$WORK/b076/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile github.com/tarm/serial=$WORK/b116/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile math/rand=$WORK/b048/_pkg_.a
packagefile net=$WORK/b043/_pkg_.a
packagefile ProjectName/config=$WORK/b106/_pkg_.a
packagefile ProjectName/event=$WORK/b114/_pkg_.a
packagefile ProjectName/util=$WORK/b111/_pkg_.a
packagefile strconv=$WORK/b017/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
packagefile time=$WORK/b030/_pkg_.a
packagefile unicode/utf8=$WORK/b018/_pkg_.a
EOF
cd /mnt/ProjectName/protocol
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b115/_pkg_.a -trimpath "$WORK/b115=>" -p ProjectName/protocol -lang=go1.14 -complete -buildid Fp89sQT3TyCNhqMEpIOD/Fp89sQT3TyCNhqMEpIOD -goversion go1.14.1 -D "" -importcfg $WORK/b115/importcfg -pack -c=4 ./client_asseco.go ./client_garanti.go ./client_mellon.go ./client_printec.go ./client_ropeco.go ./client_servus.go ./client_ucs.go ./client_vivawallet.go ./conn_asseco.go ./conn_garanti.go ./conn_mellon.go ./conn_printec.go ./conn_ropeco.go ./conn_servus.go ./conn_ucs.go ./conn_vivawallet.go ./emv_decoder.go ./pos_client.go ./pos_errors.go ./pos_transaction.go ./pos_util.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b115/_pkg_.a # internal
cp $WORK/b115/_pkg_.a /root/.cache/go-build/77/77f54ae6e9fd4de096ffa72dd21550b40d892e53a3b37aeeda54505636a93fef-d # internal
mkdir -p $WORK/b112/
cat >$WORK/b112/importcfg << 'EOF' # internal
# import config
packagefile encoding/base64=$WORK/b078/_pkg_.a
packagefile encoding/json=$WORK/b107/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile github.com/gofrs/flock=$WORK/b113/_pkg_.a
packagefile gopkg.in/antage/eventsource.v1=$WORK/b033/_pkg_.a
packagefile io/ioutil=$WORK/b081/_pkg_.a
packagefile net/http=$WORK/b049/_pkg_.a
packagefile os=$WORK/b025/_pkg_.a
packagefile ProjectName/config=$WORK/b106/_pkg_.a
packagefile ProjectName/event=$WORK/b114/_pkg_.a
packagefile ProjectName/protocol=$WORK/b115/_pkg_.a
packagefile ProjectName/util=$WORK/b111/_pkg_.a
packagefile strconv=$WORK/b017/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
packagefile time=$WORK/b030/_pkg_.a
EOF
cd /mnt/ProjectName/service
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b112/_pkg_.a -trimpath "$WORK/b112=>" -p ProjectName/service -lang=go1.14 -complete -buildid spBg2S7LU420LBLNj6DZ/spBg2S7LU420LBLNj6DZ -goversion go1.14.1 -D "" -importcfg $WORK/b112/importcfg -pack -c=4 ./service.go ./service_errors.go ./service_handlers.go
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b112/_pkg_.a # internal
cp $WORK/b112/_pkg_.a /root/.cache/go-build/74/74d36f8eda93fce5e5cd4ee8ff966697fb798d56f66fee4ca09aa8acf0e6e089-d # internal
mkdir -p $WORK/b001/
cat >$WORK/b001/_gomod_.go << 'EOF' # internal
package main
import _ "unsafe"
//go:linkname __debug_modinfo__ runtime.modinfo
var __debug_modinfo__ = "0w\xaf\f\x92t\b\x02A\xe1\xc1\a\xe6\xd6\x18\xe6path\tProjectName\nmod\tProjectName\t(devel)\t\ndep\tgithub.com/gofrs/flock\tv0.7.1\th1:DP+LD/t0njgoPBvT5MJLeliUIVQR03hiKR6vezdwHlc=\ndep\tgithub.com/tarm/serial\tv0.0.0-20180830185346-98f6abe2eb07\th1:UyzmZLoiDWMRywV4DUYb9Fbt8uiOSooupjTq10vpvnU=\ndep\tgolang.org/x/sys\tv0.0.0-20200321134203-328b4cd54aae\th1:3tcmuaB7wwSZtelmiv479UjUB+vviwABz7a133ZwOKQ=\ndep\tgopkg.in/antage/eventsource.v1\tv1.0.0-20150318155416-803f4c5af225\th1:xy+AV3uSExoRQc2qWXeZdbhFGwBFK/AmGlrBZEjbvuQ=\n\xf92C1\x86\x18 r\x00\x82B\x10A\x16\xd8\xf2"
	EOF
cat >$WORK/b001/importcfg << 'EOF' # internal
# import config
packagefile flag=$WORK/b002/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile gopkg.in/antage/eventsource.v1=$WORK/b033/_pkg_.a
packagefile net/http=$WORK/b049/_pkg_.a
packagefile os=$WORK/b025/_pkg_.a
packagefile os/signal=$WORK/b105/_pkg_.a
packagefile ProjectName/config=$WORK/b106/_pkg_.a
packagefile ProjectName/service=$WORK/b112/_pkg_.a
packagefile ProjectName/util=$WORK/b111/_pkg_.a
packagefile syscall=$WORK/b029/_pkg_.a
packagefile time=$WORK/b030/_pkg_.a
packagefile runtime=$WORK/b005/_pkg_.a
packagefile math=$WORK/b015/_pkg_.a
EOF
cd /mnt/ProjectName
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b001/_pkg_.a -trimpath "$WORK/b001=>" -p main -lang=go1.14 -buildid Kw5EX4Nvp3elczpdPaAu/Kw5EX4Nvp3elczpdPaAu -goversion go1.14.1 -D "" -importcfg $WORK/b001/importcfg -pack -c=4 ./main.go $WORK/b001/_gomod_.go
/usr/local/go/pkg/tool/linux_arm64/pack r $WORK/b001/_pkg_.a ./resource.syso # internal
/usr/local/go/pkg/tool/linux_arm64/buildid -w $WORK/b001/_pkg_.a # internal
cp $WORK/b001/_pkg_.a /root/.cache/go-build/60/60909e6b979039e71ba7d307c36b6c98629d93e5533d15de68eda1c541c9c4cc-d # internal
cat >$WORK/b001/importcfg.link << 'EOF' # internal
packagefile ProjectName=$WORK/b001/_pkg_.a
packagefile flag=$WORK/b002/_pkg_.a
packagefile fmt=$WORK/b012/_pkg_.a
packagefile gopkg.in/antage/eventsource.v1=$WORK/b033/_pkg_.a
packagefile net/http=$WORK/b049/_pkg_.a
packagefile os=$WORK/b025/_pkg_.a
packagefile os/signal=$WORK/b105/_pkg_.a
packagefile ProjectName/config=$WORK/b106/_pkg_.a
packagefile ProjectName/service=$WORK/b112/_pkg_.a
packagefile ProjectName/util=$WORK/b111/_pkg_.a
packagefile syscall=$WORK/b029/_pkg_.a
packagefile time=$WORK/b030/_pkg_.a
packagefile runtime=$WORK/b005/_pkg_.a
packagefile math=$WORK/b015/_pkg_.a
packagefile errors=$WORK/b003/_pkg_.a
packagefile io=$WORK/b024/_pkg_.a
packagefile reflect=$WORK/b014/_pkg_.a
packagefile sort=$WORK/b023/_pkg_.a
packagefile strconv=$WORK/b017/_pkg_.a
packagefile strings=$WORK/b032/_pkg_.a
packagefile internal/fmtsort=$WORK/b013/_pkg_.a
packagefile sync=$WORK/b019/_pkg_.a
packagefile unicode/utf8=$WORK/b018/_pkg_.a
packagefile bytes=$WORK/b034/_pkg_.a
packagefile compress/gzip=$WORK/b035/_pkg_.a
packagefile container/list=$WORK/b041/_pkg_.a
packagefile log=$WORK/b042/_pkg_.a
packagefile net=$WORK/b043/_pkg_.a
packagefile bufio=$WORK/b036/_pkg_.a
packagefile context=$WORK/b044/_pkg_.a
packagefile crypto/rand=$WORK/b050/_pkg_.a
packagefile crypto/tls=$WORK/b056/_pkg_.a
packagefile encoding/base64=$WORK/b078/_pkg_.a
packagefile encoding/binary=$WORK/b038/_pkg_.a
packagefile vendor/golang.org/x/net/http/httpguts=$WORK/b090/_pkg_.a
packagefile vendor/golang.org/x/net/http/httpproxy=$WORK/b097/_pkg_.a
packagefile vendor/golang.org/x/net/http2/hpack=$WORK/b098/_pkg_.a
packagefile vendor/golang.org/x/net/idna=$WORK/b091/_pkg_.a
packagefile io/ioutil=$WORK/b081/_pkg_.a
packagefile math/rand=$WORK/b048/_pkg_.a
packagefile mime=$WORK/b099/_pkg_.a
packagefile mime/multipart=$WORK/b100/_pkg_.a
packagefile net/http/httptrace=$WORK/b102/_pkg_.a
packagefile net/http/internal=$WORK/b103/_pkg_.a
packagefile net/textproto=$WORK/b096/_pkg_.a
packagefile net/url=$WORK/b083/_pkg_.a
packagefile path=$WORK/b104/_pkg_.a
packagefile path/filepath=$WORK/b082/_pkg_.a
packagefile sync/atomic=$WORK/b021/_pkg_.a
packagefile internal/oserror=$WORK/b026/_pkg_.a
packagefile internal/poll=$WORK/b027/_pkg_.a
packagefile internal/syscall/unix=$WORK/b028/_pkg_.a
packagefile internal/testlog=$WORK/b031/_pkg_.a
packagefile crypto=$WORK/b057/_pkg_.a
packagefile crypto/rsa=$WORK/b070/_pkg_.a
packagefile crypto/sha256=$WORK/b072/_pkg_.a
packagefile crypto/x509=$WORK/b073/_pkg_.a
packagefile encoding/json=$WORK/b107/_pkg_.a
packagefile encoding/pem=$WORK/b077/_pkg_.a
packagefile regexp=$WORK/b109/_pkg_.a
packagefile github.com/gofrs/flock=$WORK/b113/_pkg_.a
packagefile ProjectName/event=$WORK/b114/_pkg_.a
packagefile ProjectName/protocol=$WORK/b115/_pkg_.a
packagefile crypto/md5=$WORK/b068/_pkg_.a
packagefile internal/bytealg=$WORK/b006/_pkg_.a
packagefile internal/race=$WORK/b020/_pkg_.a
packagefile internal/cpu=$WORK/b007/_pkg_.a
packagefile runtime/internal/atomic=$WORK/b009/_pkg_.a
packagefile runtime/internal/math=$WORK/b010/_pkg_.a
packagefile runtime/internal/sys=$WORK/b011/_pkg_.a
packagefile math/bits=$WORK/b016/_pkg_.a
packagefile internal/reflectlite=$WORK/b004/_pkg_.a
packagefile unicode=$WORK/b022/_pkg_.a
packagefile compress/flate=$WORK/b037/_pkg_.a
packagefile hash/crc32=$WORK/b039/_pkg_.a
packagefile vendor/golang.org/x/net/dns/dnsmessage=$WORK/b045/_pkg_.a
packagefile internal/nettrace=$WORK/b046/_pkg_.a
packagefile internal/singleflight=$WORK/b047/_pkg_.a
packagefile crypto/aes=$WORK/b051/_pkg_.a
packagefile crypto/cipher=$WORK/b052/_pkg_.a
packagefile math/big=$WORK/b055/_pkg_.a
packagefile crypto/des=$WORK/b058/_pkg_.a
packagefile crypto/ecdsa=$WORK/b059/_pkg_.a
packagefile crypto/ed25519=$WORK/b065/_pkg_.a
packagefile crypto/elliptic=$WORK/b060/_pkg_.a
packagefile crypto/hmac=$WORK/b067/_pkg_.a
packagefile crypto/rc4=$WORK/b069/_pkg_.a
packagefile crypto/sha1=$WORK/b071/_pkg_.a
packagefile crypto/sha512=$WORK/b062/_pkg_.a
packagefile crypto/subtle=$WORK/b054/_pkg_.a
packagefile encoding/asn1=$WORK/b063/_pkg_.a
packagefile vendor/golang.org/x/crypto/chacha20poly1305=$WORK/b084/_pkg_.a
packagefile vendor/golang.org/x/crypto/cryptobyte=$WORK/b079/_pkg_.a
packagefile vendor/golang.org/x/crypto/curve25519=$WORK/b088/_pkg_.a
packagefile vendor/golang.org/x/crypto/hkdf=$WORK/b089/_pkg_.a
packagefile hash=$WORK/b040/_pkg_.a
packagefile vendor/golang.org/x/text/secure/bidirule=$WORK/b092/_pkg_.a
packagefile vendor/golang.org/x/text/unicode/bidi=$WORK/b094/_pkg_.a
packagefile vendor/golang.org/x/text/unicode/norm=$WORK/b095/_pkg_.a
packagefile mime/quotedprintable=$WORK/b101/_pkg_.a
packagefile crypto/internal/randutil=$WORK/b061/_pkg_.a
packagefile crypto/dsa=$WORK/b074/_pkg_.a
packagefile crypto/x509/pkix=$WORK/b075/_pkg_.a
packagefile encoding/hex=$WORK/b076/_pkg_.a
packagefile vendor/golang.org/x/crypto/cryptobyte/asn1=$WORK/b080/_pkg_.a
packagefile encoding=$WORK/b108/_pkg_.a
packagefile unicode/utf16=$WORK/b064/_pkg_.a
packagefile regexp/syntax=$WORK/b110/_pkg_.a
packagefile github.com/tarm/serial=$WORK/b116/_pkg_.a
packagefile crypto/internal/subtle=$WORK/b053/_pkg_.a
packagefile crypto/ed25519/internal/edwards25519=$WORK/b066/_pkg_.a
packagefile vendor/golang.org/x/crypto/chacha20=$WORK/b085/_pkg_.a
packagefile vendor/golang.org/x/crypto/internal/subtle=$WORK/b086/_pkg_.a
packagefile vendor/golang.org/x/crypto/poly1305=$WORK/b087/_pkg_.a
packagefile vendor/golang.org/x/text/transform=$WORK/b093/_pkg_.a
packagefile golang.org/x/sys/unix=$WORK/b117/_pkg_.a
EOF
mkdir -p $WORK/b001/exe/
cd .
/usr/local/go/pkg/tool/linux_arm64/link -o $WORK/b001/exe/a.out -importcfg $WORK/b001/importcfg.link -buildmode=exe -buildid=0dOqnckV0j7V8yyvR7MS/Kw5EX4Nvp3elczpdPaAu/WV1n8LWMlaQK3-wtF03u/0dOqnckV0j7V8yyvR7MS -extld=clang $WORK/b001/_pkg_.a
# ProjectName
/tmp/go-build991166710/b001/_pkg_.a(resource.syso): main(.rsrc)<153>: unknown ARM relocation type 7

@randall77
Copy link
Contributor

cd /mnt/ProjectName
/usr/local/go/pkg/tool/linux_arm64/compile -o $WORK/b001/pkg.a -trimpath "$WORK/b001=>" -p main -lang=go1.14 -buildid Kw5EX4Nvp3elczpdPaAu/Kw5EX4Nvp3elczpdPaAu -goversion go1.14.1 -D "" -importcfg $WORK/b001/importcfg -pack -c=4 ./main.go $WORK/b001/gomod.go
/usr/local/go/pkg/tool/linux_arm64/pack r $WORK/b001/pkg.a ./resource.syso # internal

Do you have a resource.syso file anywhere in your source tree? Probably in package ProjectName? Anywhere else, like in a dependency?

@lucianboldu
Copy link
Author

lucianboldu commented Mar 26, 2020 via email

@ianlancetaylor
Copy link
Contributor

A .syso file is going to be linked in for every build. If you have a Windows-specific .syso file, you need to name it resource_windows.syso so that it is only included in Windows builds.

(@randall77 Good call.)

@lucianboldu
Copy link
Author

lucianboldu commented Mar 26, 2020 via email

@lucianboldu
Copy link
Author

Ohh my god, it's working. I modified the comment from //go:generate goversioninfo to //go:generate goversioninfo -o=resource_windows.syso and everything works like it used to.
Thank you very much and i'm so sorry for this mistake.
Have a nice day!

@randall77
Copy link
Contributor

Happy to help.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
FrozenDueToAge NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one. WaitingForInfo Issue is not actionable because of missing required information, which needs to be provided.
Projects
None yet
Development

No branches or pull requests

5 participants