From 2f12a47405447a4c29ef17ddaff06feed76962dd Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Sun, 9 Jun 2024 20:32:10 +0200 Subject: [PATCH] fix build options for CAXPYC/ZAXPYC --- interface/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/CMakeLists.txt b/interface/CMakeLists.txt index 05b893b8c..449072bae 100644 --- a/interface/CMakeLists.txt +++ b/interface/CMakeLists.txt @@ -137,7 +137,7 @@ endif () foreach (float_type ${FLOAT_TYPES}) if (${float_type} STREQUAL "COMPLEX" OR ${float_type} STREQUAL "ZCOMPLEX") - GenerateNamedObjects("zaxpy.c" "" "axpyc" ${CBLAS_FLAG} "" "" false ${float_type}) + GenerateNamedObjects("zaxpy.c" "CONJ" "axpyc" ${CBLAS_FLAG} "" "" false ${float_type}) GenerateNamedObjects("zger.c" "" "geru" ${CBLAS_FLAG} "" "" false ${float_type}) GenerateNamedObjects("zger.c" "CONJ" "gerc" ${CBLAS_FLAG} "" "" false ${float_type})