From: Changcheng Liu Date: Wed, 28 Oct 2020 00:54:32 +0000 (+0800) Subject: cmake: refine yasm support x86_64 and AVX2 info X-Git-Tag: v16.1.0~720^2~11 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=9d94548b4c8addf21e2940c7bd7ca2f17e157f48;p=ceph-ci.git cmake: refine yasm support x86_64 and AVX2 info Signed-off-by: Changcheng Liu --- diff --git a/cmake/modules/CheckYasm.cmake b/cmake/modules/CheckYasm.cmake index 6bebc62734f..cbbbe918d08 100644 --- a/cmake/modules/CheckYasm.cmake +++ b/cmake/modules/CheckYasm.cmake @@ -36,8 +36,8 @@ macro(check_yasm_support _object_format _good_result _better_result) elseif(NOT not_arch_x32) message(STATUS "Found Yasm: but x86_64 with x32 ABI is not supported") elseif(${_better_result}) - message(STATUS "Found Yasm: good -- capable of assembling x86_64") + message(STATUS "Found Yasm: good -- capable of assembling x86_64 and AVX2") elseif(${_good_result}) - message(STATUS "Found Yasm: better -- capable of assembling AVX2") + message(STATUS "Found Yasm: better -- capable of assembling x86_64") endif() endmacro()