1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-23 05:12:40 +03:00

deps/harfbuzz: ignore a warning in the harfbuzz library

We can't do anything about warnings in vendored libraries, so
suppress it.
This commit is contained in:
Wez Furlong 2023-08-22 06:42:46 -07:00
parent 85bb023295
commit c41ae92404
No known key found for this signature in database
GPG Key ID: 7A7F66A31EC9B387

View File

@ -18,6 +18,7 @@ fn harfbuzz() {
cfg.flag_if_supported("-fno-threadsafe-statics");
cfg.flag_if_supported("-std=c++11");
cfg.flag_if_supported("-fno-stack-check");
cfg.flag_if_supported("-Wno-format-overflow");
let build_dir = out_dir.join("harfbuzz-build");
fs::create_dir_all(&build_dir).unwrap();