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/link: support c-archive for freebsd/arm and freebsd/arm64 #44084

Open
hajimehoshi opened this issue Feb 3, 2021 · 0 comments
Open

cmd/link: support c-archive for freebsd/arm and freebsd/arm64 #44084

hajimehoshi opened this issue Feb 3, 2021 · 0 comments
Labels
FeatureRequest Issues asking for a new feature that does not need a proposal. NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one. OS-FreeBSD
Milestone

Comments

@hajimehoshi
Copy link
Member

This is a request. The buildmode c-archive is not supported on freebsd/arm and freebsd/arm64 yet (go1.16-beta)

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

@hajimehoshi hajimehoshi added the FeatureRequest Issues asking for a new feature that does not need a proposal. label Feb 3, 2021
@gopherbot gopherbot added the Builders x/build issues (builders, bots, dashboards) label Feb 3, 2021
@gopherbot gopherbot added this to the Unreleased milestone Feb 3, 2021
@hajimehoshi hajimehoshi changed the title x/build: support c-archive for freebsd/arm and freebsd/arm64 cmd/link: support c-archive for freebsd/arm and freebsd/arm64 Feb 3, 2021
@hajimehoshi hajimehoshi removed the Builders x/build issues (builders, bots, dashboards) label Feb 3, 2021
@cherrymui cherrymui modified the milestones: Unreleased, Unplanned Feb 3, 2021
@cagedmantis cagedmantis added NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one. OS-FreeBSD labels Feb 3, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
FeatureRequest Issues asking for a new feature that does not need a proposal. NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one. OS-FreeBSD
Projects
None yet
Development

No branches or pull requests

4 participants