From b8c61c6bb35c49fc8a6aed4925e59ba1694eab19 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Sat, 1 Apr 2017 18:41:59 -0700 Subject: [PATCH] x86: Report the AES and SHA New Instruction detection Commit 0f1b6acab7713b05223f029bf9201daf42096d3b added the detection, but not the reporting in configure's output. This change makes them be reported alongside F16C. Change-Id: I27b55fdf514247549455fffd14b1711ca47b1d9a Reviewed-by: Allan Sandfeld Jensen --- configure.json | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/configure.json b/configure.json index 69019afa808..01506574161 100644 --- a/configure.json +++ b/configure.json @@ -880,7 +880,7 @@ ] }, "aesni": { - "label": "aesni", + "label": "AES", "condition": "features.sse2 && tests.aesni", "output": [ "privateConfig", @@ -888,7 +888,7 @@ ] }, "shani": { - "label": "shani", + "label": "SHA", "condition": "features.sse2 && tests.shani", "output": [ "privateConfig", @@ -1152,7 +1152,7 @@ Configure with '-qreal float' to create a build that is binary-compatible with 5 { "message": "AVX", "type": "featureList", - "args": "avx avx2 f16c", + "args": "avx avx2", "condition": "(arch.i386 || arch.x86_64)" }, { @@ -1161,6 +1161,12 @@ Configure with '-qreal float' to create a build that is binary-compatible with 5 "args": "avx512f avx512er avx512cd avx512pf avx512dq avx512bw avx512vl avx512ifma avx512vbmi", "condition": "(arch.i386 || arch.x86_64)" }, + { + "message": "Other x86", + "type": "featureList", + "args": "aesni f16c shani", + "condition": "(arch.i386 || arch.x86_64)" + }, { "type": "feature", "args": "neon",