From cf7e0b51b9bc1e15d66211f87795d017beb5faa0 Mon Sep 17 00:00:00 2001 From: xyb <147673292+xieyubo@users.noreply.github.com> Date: Tue, 17 Dec 2024 10:44:40 -0800 Subject: [PATCH] Update building.md, add missed linux dependency `libxi-dev` --- docs/building.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/building.md b/docs/building.md index f269fa64bd5..a35fd0b3ba7 100644 --- a/docs/building.md +++ b/docs/building.md @@ -65,12 +65,13 @@ The following packages are needed to build Dawn. (Package names are the Ubuntu n * `libxcursor-dev` * `mesa-common-dev` * `libx11-xcb-dev` +* `libxi-dev` * `pkg-config` * `nodejs` * `npm` ```sh -sudo apt-get install libxrandr-dev libxinerama-dev libxcursor-dev mesa-common-dev libx11-xcb-dev pkg-config nodejs npm +sudo apt-get install libxrandr-dev libxinerama-dev libxcursor-dev mesa-common-dev libx11-xcb-dev libxi-dev pkg-config nodejs npm ``` Note, `nodejs` and `npm` are only needed if building `dawn.node`.