-
Notifications
You must be signed in to change notification settings - Fork 19k
cmd/compile: unknown ARM relocation type 7 #38020
Copy link
Copy link
Closed
Labels
FrozenDueToAgeNeedsInvestigationSomeone must examine and confirm this is a valid issue and not a duplicate of an existing one.Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.WaitingForInfoIssue is not actionable because of missing required information, which needs to be provided.Issue is not actionable because of missing required information, which needs to be provided.
Milestone
Metadata
Metadata
Assignees
Labels
FrozenDueToAgeNeedsInvestigationSomeone must examine and confirm this is a valid issue and not a duplicate of an existing one.Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.WaitingForInfoIssue is not actionable because of missing required information, which needs to be provided.Issue is not actionable because of missing required information, which needs to be provided.
What version of Go are you using (
go version)?Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env)?go envOutputWhat 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.