From f0ce56bbd031a8b922e9695670c09c8a385c657f Mon Sep 17 00:00:00 2001 From: Ebrahim Byagowi Date: Tue, 24 Mar 2020 22:53:38 +0430 Subject: [PATCH] [meson] Don't compile test-bimap on msvc either MSVC doens't like its NullPool, test-bimap.cc.obj : error LNK2019: unresolved external symbol "unsigned __int64 const * const _hb_NullPool" (?_hb_NullPool@@3QB_KB) referenced in function --- src/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meson.build b/src/meson.build index 7d4212185..499194e8f 100644 --- a/src/meson.build +++ b/src/meson.build @@ -409,12 +409,12 @@ compiled_tests = { 'test-number': ['test-number.cc', 'hb-number.cc'], 'test-ot-tag': 'hb-ot-tag.cc', 'test-unicode-ranges': 'test-unicode-ranges.cc', - 'test-bimap': ['test-bimap.cc', 'hb-static.cc'], } if cpp.get_id() != 'msvc' # TODO: MSVC doesn't like these, fix them compiled_tests += { 'test-algs': ['test-algs.cc', 'hb-static.cc'], + 'test-bimap': ['test-bimap.cc', 'hb-static.cc'], 'test-iter': ['test-iter.cc', 'hb-static.cc'], 'test-meta': ['test-meta.cc', 'hb-static.cc'], }