mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-17 05:54:59 +02:00
Speedup unicode character property lookup
Use libunistring instead of building predicates from the unicode database
This commit is contained in:
2
setup.py
2
setup.py
@@ -170,7 +170,7 @@ def init_env(debug=False, sanitize=False, native_optimizations=True, profile=Fal
|
||||
else:
|
||||
glfw_ldflags = pkg_config('glfw3', '--libs')
|
||||
glew_libs = pkg_config('glew', '--libs')
|
||||
ldpaths = pylib + glew_libs + font_libs + glfw_ldflags
|
||||
ldpaths = pylib + glew_libs + font_libs + glfw_ldflags + ['-lunistring']
|
||||
|
||||
try:
|
||||
os.mkdir(build_dir)
|
||||
|
||||
Reference in New Issue
Block a user