Skip to content

Commit 80c6341

Browse files
fixup packages: make sed and perl dependencies explicit for clarity
sed and perl are mentioned in docs and used in scripts
1 parent 040a29c commit 80c6341

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

.devcontainer/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ RUN apt-get update \
5757
# && apt-get update
5858

5959
# Install common compilation tools
60-
RUN apt-get -y install git build-essential pkg-config autoconf automake libtool bison flex libpq-dev parallel libunwind-dev curl
60+
RUN apt-get -y install git build-essential pkg-config autoconf automake libtool bison flex sed perl libpq-dev parallel libunwind-dev curl
6161

6262
# Update compiler tools
6363
RUN apt-get -y install libstdc++-10-dev clang-format-12 ccache

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
sudo apt-get -y install clang-12 llvm-12
5454
fi
5555
- name: install dependencies
56-
run: sudo apt-get -y install postgresql git build-essential pkg-config autoconf automake libtool bison flex libpq-dev parallel libunwind-dev
56+
run: sudo apt-get -y install postgresql git build-essential pkg-config autoconf automake libtool bison flex libpq-dev parallel libunwind-dev sed perl
5757
- name: Build
5858
run: |
5959
if test "${{ matrix.toolchain }}" = "gcc" ; then

INSTALL-Windows.md

+2
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ presumably depend on your operating system's setting might cause inconsistencies
6262
* `Bison`
6363
* `gcc`
6464
* `sed`
65+
* `perl`
6566
* `curl`
6667
* Add `C:\MinGW\msys\1.0\bin;C:\MinGW\bin` to the end of `%PATH%`
6768
* Download and install cygwin 64 bit build from https://cygwin.com/install.html
@@ -71,6 +72,7 @@ presumably depend on your operating system's setting might cause inconsistencies
7172
* `curl` (command line)
7273
* `gcc-core`
7374
* `sed`
75+
* `perl`
7476
* Add `c:\cygwin64\bin` to the end of `%PATH%` (at least for Visual Studio)
7577

7678
> Note: if you're going to use 'cp'and 'mkdir' from cygwin (tests do),

INSTALL.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ To install Postgresql, follow instructions from the [Postgresql download page](h
6565
- `libpq-dev` unless you `./configure --disable-postgres` in the build step below.
6666
- 64-bit system
6767
- `clang-format-12` (for `make format` to work)
68-
- `perl`
68+
- `sed` and `perl`
6969
- `libunwind-dev`
7070

7171
### Ubuntu
@@ -93,7 +93,7 @@ After installing packages, head to [building with clang and libc++](#building-wi
9393

9494
#### Installing packages
9595
# common packages
96-
sudo apt-get install git build-essential pkg-config autoconf automake libtool bison flex libpq-dev libunwind-dev parallel
96+
sudo apt-get install git build-essential pkg-config autoconf automake libtool bison flex libpq-dev libunwind-dev parallel sed perl
9797
# if using clang
9898
sudo apt-get install clang-12
9999
# clang with libstdc++
@@ -111,7 +111,7 @@ In order to install the llvm (clang) toolchain, you may have to follow instructi
111111
When building on OSX, here's some dependencies you'll need:
112112
- Install xcode
113113
- Install [homebrew](https://brew.sh)
114-
- `brew install libsodium libtool autoconf automake pkg-config libpq openssl parallel ccache bison`
114+
- `brew install libsodium libtool autoconf automake pkg-config libpq openssl parallel ccache bison sed perl`
115115

116116
You'll also need to configure pkg-config by adding the following to your shell (`.zshenv` or `.zshrc`):
117117
```zsh

docker/Dockerfile.testing

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ENV DEBIAN_FRONTEND=noninteractive
44
RUN apt-get update && \
55
apt-get -y install iproute2 procps lsb-release \
66
git build-essential pkg-config autoconf automake libtool \
7-
bison flex libpq-dev parallel libunwind-dev \
7+
bison flex sed perl libpq-dev parallel libunwind-dev \
88
clang-12 libc++abi-12-dev libc++-12-dev \
99
postgresql curl
1010

0 commit comments

Comments
 (0)