Update to microarch 0.3.0 and modernize compiler compatibility - #3
Merged
Conversation
- Bump version to 4.1.0 - Update microarch dependency from 0.2.1 to 0.3.0 - Migrate from package_id() information erasure to compatibility() method - Add modern compiler version compatibility for GCC 13-15, Clang 13-20, Apple Clang 13-18 This update brings support for new x86 ISA extensions from GCC 14/15, including AVX10.1, AVX-VNNI-INT16, SHA-512, SM3, SM4, APX_F, USERMSR, and AMX extensions (FP8, TF32, transpose, AVX512, MOVRS). The new compatibility() method implements forward compatibility, allowing newer compiler versions to fallback to binaries built with older versions when exact matches aren't available, while preserving distinct package IDs for each compiler version. This follows Conan 2.0 best practices.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR updates the project to use
microarch 0.3.0and migrates from the legacy information erasure pattern inpackage_id()to the moderncompatibility()method recommended by Conan 2.0.Changes
1. Dependencies
microarchfrom 0.2.1 to 0.3.02. Compiler Support
Now supporting:
3. New ISA Extensions (from microarch 0.3.0)
GCC 14 extensions:
GCC 15 extensions:
4. Migration to Modern Compatibility Pattern
Before (information erasure):
After (compatibility method):
Benefits:
Testing
Tested with GCC 15 on GitHub Actions (current CI setup).
References