add two LUT-based implementations of isSymbol

This commit is contained in:
Jeffrey C. Ollie
2025-09-04 23:04:08 -05:00
parent 968b9d536d
commit a7da96faee
13 changed files with 634 additions and 25 deletions

View File

@@ -61,6 +61,7 @@ emit_termcap: bool = false,
emit_test_exe: bool = false,
emit_xcframework: bool = false,
emit_webdata: bool = false,
emit_unicode_table_gen: bool = false,
/// Environmental properties
env: std.process.EnvMap,
@@ -299,6 +300,12 @@ pub fn init(b: *std.Build) !Config {
"Build and install test executables with 'build'",
) orelse false;
config.emit_unicode_table_gen = b.option(
bool,
"emit-unicode-table-gen",
"Build and install executables that generate unicode tables with 'build'",
) orelse false;
config.emit_bench = b.option(
bool,
"emit-bench",