sstallion/go-hid

Issues building binaries with GitHub Actions

jslay88 opened this issue · 1 comments

I have finished up the initial release of my project and I am trying to build binaries in GitHub Actions. However, I am having issues when trying to cross-compile for different architectures (ARM).

Here is my action log.

Fails with

# runtime/cgo
gcc_arm64.S: Assembler messages:
gcc_arm64.S:30: Error: no such instruction: `stp x29,x30,[sp,'
gcc_arm64.S:34: Error: too many memory references for `mov'
gcc_arm64.S:36: Error: no such instruction: `stp x19,x20,[sp,'
gcc_arm64.S:39: Error: no such instruction: `stp x21,x22,[sp,'
gcc_arm64.S:42: Error: no such instruction: `stp x23,x24,[sp,'
gcc_arm64.S:45: Error: no such instruction: `stp x25,x26,[sp,'
gcc_arm64.S:48: Error: no such instruction: `stp x27,x28,[sp,'
gcc_arm64.S:52: Error: too many memory references for `mov'
gcc_arm64.S:53: Error: too many memory references for `mov'
gcc_arm64.S:54: Error: too many memory references for `mov'
gcc_arm64.S:56: Error: no such instruction: `blr x20'
gcc_arm64.S:57: Error: no such instruction: `blr x19'
gcc_arm64.S:59: Error: no such instruction: `ldp x27,x28,[sp,'
gcc_arm64.S:62: Error: no such instruction: `ldp x25,x26,[sp,'
gcc_arm64.S:65: Error: no such instruction: `ldp x23,x24,[sp,'
gcc_arm64.S:[68](https://github.com/jslay88/go-litra-beam/actions/runs/8276159619/job/22644250240#step:6:69): Error: no such instruction: `ldp x21,x22,[sp,'
gcc_arm64.S:[71](https://github.com/jslay88/go-litra-beam/actions/runs/8276159619/job/22644250240#step:6:72): Error: no such instruction: `ldp x19,x20,[sp,'
gcc_arm64.S:[74](https://github.com/jslay88/go-litra-beam/actions/runs/8276159619/job/22644250240#step:6:75): Error: no such instruction: `ldp x29,x30,[sp],'
log
flag
Error: Process completed with exit code 1.

You can see the action workflow file here.

Sorry for my lack of knowledge., I am relatively new to Go and cross-compiling. Any help would be appreciated. Maybe ARM is a bit of a stretch :P

Hi @jslay88, I'm not quite sure what's going on there. I would double check that you're using the appropriate cross compiler with GOOS and GOARCH set.