我已使用此插件以泰语打印文本。我添加了Charset UTF-8并设置了页面代码(泰国为255)打印机,然后打印测试self,打印机的页面代码为泰国(255),当我尝试打印不起作用时。它仅适用于英语。 我不确定Charset是否应该吗?
cmake_external(
name = "eigen",
# These options help CMake to find prebuilt OpenBLAS, which will be copied into
# $EXT_BUILD_DEPS/openblas by the cmake_external script
cache_entries = {
"BLA_VENDOR": "OpenBLAS",
"BLAS_LIBRARIES": "$EXT_BUILD_DEPS/openblas/lib/libopenblas.a",
},
headers_only = True,
lib_source = "@eigen//:all",
# Dependency on other cmake_external rule; can also depend on cc_import, cc_library rules
deps = [":openblas"],
)