ext_long = true;
                                /* Multi-letter extension must be delimited */
                                for (; *isa && *isa != '_'; ++isa)
-                                       if (!islower(*isa) && !isdigit(*isa))
+                                       if (unlikely(!islower(*isa)
+                                                    && !isdigit(*isa)))
                                                ext_err = true;
+                               /* Parse backwards */
+                               ext_end = isa;
+                               if (unlikely(ext_err))
+                                       break;
+                               if (!isdigit(ext_end[-1]))
+                                       break;
+                               /* Skip the minor version */
+                               while (isdigit(*--ext_end))
+                                       ;
+                               if (ext_end[0] != 'p'
+                                   || !isdigit(ext_end[-1])) {
+                                       /* Advance it to offset the pre-decrement */
+                                       ++ext_end;
+                                       break;
+                               }
+                               /* Skip the major version */
+                               while (isdigit(*--ext_end))
+                                       ;
+                               ++ext_end;
                                break;
                        default:
                                if (unlikely(!islower(*ext))) {
                        }
                        if (*isa != '_')
                                --isa;
-                       /*
-                        * TODO: Full version-aware handling including
-                        * multi-letter extensions will be added in-future.
-                        */
-                       if (ext_err || ext_long)
+
+                       if (unlikely(ext_err))
                                continue;
-                       this_hwcap |= isa2hwcap[(unsigned char)(*ext)];
-                       this_isa |= (1UL << (*ext - 'a'));
+                       if (!ext_long) {
+                               this_hwcap |= isa2hwcap[(unsigned char)(*ext)];
+                               this_isa |= (1UL << (*ext - 'a'));
+                       }
                }
 
                /*