Skip to content

Commit 2312e3c

Browse files
authored
fix(interactive): Fix building interactive on Manylinux2014 (#4597)
Fix building interactive in manylinux image.
1 parent 28d6cff commit 2312e3c

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

flex/utils/result.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#define UTILS_RESULT_H_
1818

1919
#include <filesystem>
20+
#include <iomanip>
2021
#include <iostream>
2122
#include <string>
2223
#include <vector>

flex/utils/service_utils.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
#include <fcntl.h>
1919
#include <rapidjson/pointer.h>
2020
#include <rapidjson/rapidjson.h>
21+
#include <signal.h>
2122
#include <sys/sysinfo.h>
2223
#include <sys/types.h>
2324
#include <unistd.h>

python/graphscope/gsctl/scripts/install_deps.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -868,9 +868,9 @@ install_analytical_java_dependencies() {
868868
fi
869869
}
870870

871-
INTERACTIVE_MACOS=("apache-arrow" "rapidjson" "boost" "glog" "gflags")
872-
INTERACTIVE_UBUNTU=("rapidjson-dev" "libgoogle-glog-dev" "libgflags-dev")
873-
INTERACTIVE_CENTOS=("rapidjson-devel")
871+
INTERACTIVE_MACOS=("apache-arrow" "rapidjson" "boost" "glog" "gflags" "yaml-cpp" "protobuf")
872+
INTERACTIVE_UBUNTU=("rapidjson-dev" "libgoogle-glog-dev" "libgflags-dev" "libyaml-cpp-dev" "libprotobuf-dev" "libgflags-dev")
873+
INTERACTIVE_CENTOS=("rapidjson-devel" "glog-devel")
874874

875875
install_interactive_dependencies() {
876876
# dependencies package

0 commit comments

Comments
 (0)