From 60fd1d7a15ebff36832498b4c5a89dc72d65da58 Mon Sep 17 00:00:00 2001 From: Jordi Cenzano Ferret Date: Fri, 12 Jul 2024 17:21:30 -0700 Subject: [PATCH] Added build dependencies for Ububtu Summary: - Fixes the build failure in Ubuntu Reviewed By: afrind Differential Revision: D59703853 fbshipit-source-id: 9a241d42b54d232bf8461250e90978e981f3ce91 --- build.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index cdf58d37..6d125c5e 100755 --- a/build.sh +++ b/build.sh @@ -28,6 +28,7 @@ function detect_platform() { function install_dependencies_linux() { apt update -yq apt install -yq \ + build-essential \ git \ python3 \ cmake \ @@ -43,7 +44,11 @@ function install_dependencies_linux() { libsodium-dev \ libunwind-dev \ libgflags-dev \ - libevent-dev + libevent-dev \ + libgoogle-glog-dev \ + libdouble-conversion-dev \ + libboost-all-dev \ + gperf } function install_dependencies_mac() {