We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db3f72c commit ae3d206Copy full SHA for ae3d206
CMakeLists.txt
@@ -19,6 +19,9 @@ message(STATUS "system-name" ${CMAKE_SYSTEM_NAME})
19
20
if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
21
list(APPEND TOKENIZERS_C_LINK_LIBS ${CMAKE_DL_LIBS})
22
+ if (CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64")
23
+ set(TOKENIZERS_CPP_CARGO_TARGET aarch64-unknown-linux-gnu)
24
+ endif()
25
elseif (CMAKE_SYSTEM_NAME STREQUAL "Emscripten")
26
set(TOKENIZERS_CPP_CARGO_TARGET wasm32-unknown-emscripten)
27
elseif (CMAKE_SYSTEM_NAME STREQUAL "iOS")
0 commit comments