x86: Report the AES and SHA New Instruction detection

Commit 0f1b6acab7 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 <allan.jensen@qt.io>
This commit is contained in:
Thiago Macieira 2017-04-01 18:41:59 -07:00
parent d2388f15e7
commit b8c61c6bb3

View File

@ -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",