-
Notifications
You must be signed in to change notification settings - Fork 18.8k
Open
Labels
FeatureRequestIssues asking for a new feature that does not need a proposal.Issues asking for a new feature that does not need a proposal.NeedsInvestigationSomeone 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.OS-FreeBSD
Milestone
Description
This is a request. The buildmode c-archive is not supported on freebsd/arm and freebsd/arm64 yet (go1.16-beta)
go/src/cmd/link/internal/ld/config.go
Lines 57 to 75 in cb84d83
| case "c-archive": | |
| switch objabi.GOOS { | |
| case "aix", "darwin", "ios", "linux": | |
| case "freebsd": | |
| switch objabi.GOARCH { | |
| case "amd64": | |
| default: | |
| return badmode() | |
| } | |
| case "windows": | |
| switch objabi.GOARCH { | |
| case "amd64", "386", "arm": | |
| default: | |
| return badmode() | |
| } | |
| default: | |
| return badmode() | |
| } | |
| *mode = BuildModeCArchive |
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
FeatureRequestIssues asking for a new feature that does not need a proposal.Issues asking for a new feature that does not need a proposal.NeedsInvestigationSomeone 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.OS-FreeBSD