[Brotli] Use aligned reads when building with sanitizers.

This commit is contained in:
bruvzg 2022-03-31 17:33:28 +03:00
parent b0df742cbe
commit 4d9689e7f6
No known key found for this signature in database
GPG key ID: 7960FCF39844EC38

View file

@ -74,6 +74,9 @@ if env["builtin_freetype"]:
env_freetype.Append(CPPDEFINES=["FT_CONFIG_OPTION_USE_BROTLI"])
env_freetype.Prepend(CPPPATH=[thirdparty_brotli_dir + "include"])
if env.get("use_ubsan") or env.get("use_asan") or env.get("use_tsan") or env.get("use_lsan") or env.get("use_msan"):
env_freetype.Append(CPPDEFINES=["BROTLI_BUILD_PORTABLE"])
if env["platform"] == "uwp":
# Include header for UWP to fix build issues
env_freetype.Append(CCFLAGS=["/FI", '"modules/freetype/uwpdef.h"'])