We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The config.guess and config.sub files in the current release tarball are dated 2018:
$ grep ^timestamp config.* config.guess:timestamp='2018-02-24' config.sub:timestamp='2018-02-22'
In particular they pre-date Apple silicon and hence cause the build failure for the first commit in bioconda/bioconda-recipes#49490.
In a Conda environment, ./config.guess (somewhat surprisingly) produces arm64-apple-darwin20.0.0 which causes this config.sub to fail:
./config.guess
arm64-apple-darwin20.0.0
$ ./config.sub arm64-apple-darwin20.0.0 Invalid configuration `arm64-apple-darwin20.0.0': machine `arm64-apple' not recognized
More recent versions of config.sub successfully produce aarch64-apple-darwin20.0.0, canonicalising as expected.
aarch64-apple-darwin20.0.0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The config.guess and config.sub files in the current release tarball are dated 2018:
In particular they pre-date Apple silicon and hence cause the build failure for the first commit in bioconda/bioconda-recipes#49490.
In a Conda environment,
./config.guess
(somewhat surprisingly) producesarm64-apple-darwin20.0.0
which causes this config.sub to fail:More recent versions of config.sub successfully produce
aarch64-apple-darwin20.0.0
, canonicalising as expected.The text was updated successfully, but these errors were encountered: