Skip to content

Commit df4a900

Browse files
authored
Correction2 to 2026-May-01 updates (#743)
* Move optional steps for testing VMs out of README.md file This may help avoid new users being confused that they must follow those instructions. Signed-off-by: Andy Fingerhut <andy_fingerhut@alum.wustl.edu> * Add 2025-Jan-30 versions of source code for install.sh Signed-off-by: Andy Fingerhut <andy_fingerhut@alum.wustl.edu> * Fix to previous commit Signed-off-by: Andy Fingerhut <andy_fingerhut@alum.wustl.edu> * Another correction to 2026-May-01 updates Signed-off-by: Andy Fingerhut <andy_fingerhut@alum.wustl.edu> --------- Signed-off-by: Andy Fingerhut <andy_fingerhut@alum.wustl.edu>
1 parent ae41eda commit df4a900

1 file changed

Lines changed: 29 additions & 12 deletions

File tree

vm-ubuntu-24.04/patches/behavioral-model-support-fedora.patch

Lines changed: 29 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,49 @@
11
diff --git a/install_deps.sh b/install_deps.sh
2-
index 4c5a45d..246bf03 100755
2+
index 37a49c9..cb06756 100755
33
--- a/install_deps.sh
44
+++ b/install_deps.sh
5-
@@ -1,28 +1,57 @@
5+
@@ -1,45 +1,58 @@
66
#!/bin/bash
77
set -e
8-
-ubuntu_release=`lsb_release -s -r`
8+
99
-sudo apt-get install -y \
10+
- autoconf \
1011
- automake \
12+
- bison \
13+
- build-essential \
14+
- ccache \
1115
- cmake \
12-
- libgmp-dev \
13-
- libpcap-dev \
16+
- flex \
17+
- git \
18+
- g++ \
1419
- libboost-dev \
15-
- libboost-test-dev \
20+
- libboost-filesystem-dev \
1621
- libboost-program-options-dev \
1722
- libboost-system-dev \
18-
- libboost-filesystem-dev \
23+
- libboost-test-dev \
1924
- libboost-thread-dev \
2025
- libevent-dev \
26+
- libffi-dev \
27+
- libgmp-dev \
28+
- libgrpc++-dev \
29+
- libgrpc-dev \
30+
- libnanomsg-dev \
31+
- libpcap-dev \
32+
- libprotobuf-dev \
33+
- libprotoc-dev \
34+
- libreadline-dev \
35+
- libssl-dev \
36+
- libthrift-dev \
2137
- libtool \
22-
- flex \
23-
- bison \
38+
- libtool-bin \
2439
- pkg-config \
25-
- g++ \
26-
- libssl-dev \
27-
- libffi-dev \
40+
- protobuf-compiler \
41+
- protobuf-compiler-grpc \
2842
- python3-dev \
2943
- python3-pip \
44+
- python3-six \
45+
- python3-thrift \
46+
- thrift-compiler \
3047
- wget
3148
+if [ ! -r /etc/os-release ]
3249
+then

0 commit comments

Comments
 (0)