Speedup unicode character property lookup

Use libunistring instead of building predicates from the unicode
database
This commit is contained in:
Kovid Goyal
2017-09-10 09:57:34 +05:30
parent 63882e1fdc
commit 9bea1001f9
5 changed files with 16 additions and 64 deletions

View File

@@ -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)