Skip to content

Commit 20d1aad

Browse files
authored
Fix missing quotes around thunderx targets
1 parent d11554c commit 20d1aad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmake/prebuild.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ if (DEFINED CORE AND CMAKE_CROSSCOMPILING AND NOT (${HOST_OS} STREQUAL "WINDOWSS
198198
set(CGEMM_UNROLL_N 4)
199199
set(ZGEMM_UNROLL_M 8)
200200
set(ZGEMM_UNROLL_N 4)
201-
elseif ("${CORE}" STREQUAL "THUNDERX)
201+
elseif ("${CORE}" STREQUAL "THUNDERX")
202202
file(APPEND ${TARGET_CONF_TEMP}
203203
"#define L1_CODE_SIZE\t32768\n"
204204
"#define L1_CODE_LINESIZE\t64\n"
@@ -224,7 +224,7 @@ if (DEFINED CORE AND CMAKE_CROSSCOMPILING AND NOT (${HOST_OS} STREQUAL "WINDOWSS
224224
set(CGEMM_UNROLL_N 2)
225225
set(ZGEMM_UNROLL_M 2)
226226
set(ZGEMM_UNROLL_N 2)
227-
elseif ("${CORE}" STREQUAL "THUNDERX2T99)
227+
elseif ("${CORE}" STREQUAL "THUNDERX2T99")
228228
file(APPEND ${TARGET_CONF_TEMP}
229229
"#define L1_CODE_SIZE\t32768\n"
230230
"#define L1_CODE_LINESIZE\t64\n"

0 commit comments

Comments
 (0)