Skip to content

Commit 6b3dc93

Browse files
authored
Fix SDK Docker build scripts, update Emscripten (#172)
* Refresh and fix SDK Docker image build scripts The way the script is currently it does not work (anymore). I'm aware of two issues with the current setup: 1. emsdk underneath installs and uses Node JS and the version of Node JS is not pinned by the script and isn't tied to the version of the SDK used. As a result, emsdk moved to a newer version of Node JS than the one that was probably used when the scripts were created. This new version (it seems, the version currently being used is 18.20.3) requires a relatively fresh version of glibc which just isn't available in Ubuntu Bionic used as a base image. That results in obscure errors from CMake (see #170) 2. for whatever reason, the version of the protobuf static libraries currently in the repo, don't seem to work. I don't really know how the issue happened, but there were at least 2 users that faced the problem (see #161). To resolve the first issue, we have a bunch of options: 1. Fix the version of emsdk 2. Fix the version of Node JS 3. Update the version of glibc I figured I can combine options 1 and 3 together for the following reasons: 1. Fixing the version of emsdk fixes the problem 2. The problem arised from the fact that the versions of software used in the build script are a bit old, so an update might be in order, even though we have other solutions to the problem. > NOTE: It's my understanding that fixing emsdk version should also > pin Node JS version, so if we deploy option 1, option 2 seem > redundant. For the second problem, I think there is only one ultimate solution - not store binary artifacts in the repository and instead build them from the sources in the repo. It seems that in the past there was a concern that building protobuf libraries takes a long time - it's still certainly the case. However, I think we can compensate for that in two ways: 1. Drop WAVM - it does not seem like WAVM is still needed (the project itself appears to be dead and hasn't had any updates for at least 2 years), but also one of the comments in #158, that removed the WAVM from the docs, also suggests that three doesn't seem to be a good reason to keep WAVM in the SDK build script. 2. Take advantage of potential hardware threads in the system when calling make - most laptops or servers these days have multiple cores, so if we have to build protobuf libraries twice, we can speed it up by using more cores. With all those changes made, the build time adds up to something like 32 minutes on my laptop, compared to the 48m without building protobuf libraries from sources (and without adding -j option to make). So I think the additional time spent on building protobuf library is compensated by other changes. Signed-off-by: Mikhail Krinkin <[email protected]> * Update emsdk version to 3.1.67 in Bazel configuration This CL mostly follows the instructions in https://github.com/emscripten-core/emsdk/blob/main/bazel/README.md. Even so, there are a few things that are worth mentioning: 1. I tested the changes locally and in my tests incompatible_enable_cc_toolchain_resolution bazel flag made no difference (e.g. everything builds with or without the flag); I still keep it though because instructions say that it should be there and it does not cause any harm. 2. I don't think that we still need to patch emsdk to exclude npm modules from the toolchain, because it appears that upstream already removed those as a toolchain dependency in emscripten-core/emsdk#1045. It's worth noting, that even though I don't think that emsdk patch is still needed, I actually wasn't able to reproduce the problem reported in #149 locally without the emsdk.patch even with the current version of emsdk used by C++ SDK. Signed-off-by: Mikhail Krinkin <[email protected]> * Update building.md to match updated sdk_container.sh This is a followup to the previous commits that refreshed the build scripts and emsdk. This change reconciles the docs with the current state of the build scripts. Signed-off-by: Mikhail Krinkin <[email protected]> --------- Signed-off-by: Mikhail Krinkin <[email protected]>
1 parent 54167e2 commit 6b3dc93

10 files changed

+63
-94
lines changed

.bazelrc

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# NOTE: incompatible_enable_cc_toolchain_resolution is set by default on Bazel
2+
# versions 7.0+, see https://github.com/bazelbuild/bazel/issues/7260.
3+
#
4+
# emsdk documentation asks to set this flag (see
5+
# https://github.com/emscripten-core/emsdk/blob/main/bazel/README.md). And even
6+
# though things seem to work even without this flag, given that this flag
7+
# enables improved Bazel C++ toolchain resolution method that became the
8+
# default in newer Bazel version and does not cause problems, we keep it.
9+
build --incompatible_enable_cc_toolchain_resolution

Dockerfile-sdk

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
FROM ubuntu:bionic
1+
FROM ubuntu:noble
22

33
COPY ./sdk_container.sh /
44
COPY ./build_wasm.sh /
5-
COPY *.cc *.h *.js *.proto Makefile* *.a /sdk/
5+
COPY *.cc *.h *.js *.proto Makefile* /sdk/
66

77
RUN ./sdk_container.sh

Makefile

+4-5
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,10 @@ proxy_wasm_intrinsics_lite.pb.h struct_lite.pb.h: proxy_wasm_intrinsics_lite.pro
1212
protoc --cpp_out=. struct_lite.proto
1313

1414
${CPP_API}/libprotobuf.a ${CPP_API}/libprotobuf-lite.a:
15-
rm -rf protobuf-wasm && git clone https://github.com/protocolbuffers/protobuf protobuf-wasm \
16-
&& cd protobuf-wasm && git checkout v3.9.1 \
17-
&& rm -rf wasm-patches && git clone https://github.com/kwonoj/protobuf-wasm wasm-patches \
18-
&& cd wasm-patches && git checkout 4bba8b2f38b5004f87489642b6ca4525ae72fe7f \
19-
&& cd .. && git apply wasm-patches/*.patch \
15+
rm -rf protobuf-wasm \
16+
&& git clone https://github.com/protocolbuffers/protobuf protobuf-wasm \
17+
&& cd protobuf-wasm \
18+
&& git checkout v3.9.1 \
2019
&& ./autogen.sh \
2120
&& emconfigure ./configure --disable-shared CXXFLAGS="-O3 -flto" \
2221
&& emmake make \

bazel/dependencies_extra.bzl

+2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
# limitations under the License.
1414

1515
load("@emsdk//:emscripten_deps.bzl", "emscripten_deps")
16+
load("@emsdk//:toolchains.bzl", "register_emscripten_toolchains")
1617

1718
# Requires proxy_wasm_cpp_sdk_dependencies() to be loaded first.
1819
def proxy_wasm_cpp_sdk_dependencies_extra():
1920
emscripten_deps()
21+
register_emscripten_toolchains()

bazel/emsdk.patch

-48
This file was deleted.

bazel/repositories.bzl

+3-6
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,9 @@ def proxy_wasm_cpp_sdk_repositories():
1919
maybe(
2020
http_archive,
2121
name = "emsdk",
22-
sha256 = "1ca0ff918d476c55707bb99bc0452be28ac5fb8f22a9260a8aae8a38d1bc0e27",
23-
# v3.1.7 with Bazel fixes
24-
strip_prefix = "emsdk-0ea8f8a8707070e9a7c83fbb4a3065683bcf1799/bazel",
25-
url = "https://github.com/emscripten-core/emsdk/archive/0ea8f8a8707070e9a7c83fbb4a3065683bcf1799.tar.gz",
26-
patches = ["@proxy_wasm_cpp_sdk//bazel:emsdk.patch"],
27-
patch_args = ["-p2"],
22+
sha256 = "0cb0eabd6e3ceb1a970a2363e67f2b1689c2d83fbeae1e75901213c1f84de2e2",
23+
strip_prefix = "emsdk-3.1.67/bazel",
24+
url = "https://github.com/emscripten-core/emsdk/archive/refs/tags/3.1.67.tar.gz",
2825
)
2926

3027
maybe(

docs/building.md

+9-10
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,10 @@ sudo make install
163163
```bash
164164
git clone https://github.com/emscripten-core/emsdk.git
165165
cd emsdk
166-
./emsdk update-tags
167-
./emsdk install 3.1.7
168-
./emsdk activate 3.1.7
166+
git checkout 3.1.67
167+
168+
./emsdk install 3.1.67
169+
./emsdk activate 3.1.67
169170

170171
source ./emsdk_env.sh
171172
```
@@ -178,21 +179,19 @@ It is possible later versions will work, e.g.
178179
./emsdk activate latest
179180
```
180181

181-
However 3.1.7 is known to work.
182+
However 3.1.67 is known to work.
182183

183184
### Rebuilding the libprotobuf.a files
184185

185-
If want to rebuild the libprotobuf.a files using a version of protobuf prior to
186-
3.15, see the instructions at https://github.com/kwonoj/protobuf-wasm. Commit
187-
4bba8b2f38b5004f87489642b6ca4525ae72fe7f works for protobuf v3.9.x.
186+
To build the protobuf static libraries for use in your proxy-wasm wasm module,
187+
if you need them, you may use Emscripten in the same way sdk\_container.sh does
188+
it:
188189

189190
```bash
190191
git clone https://github.com/protocolbuffers/protobuf protobuf-wasm
191192
cd protobuf-wasm
192193
git checkout v3.9.1
193-
git clone https://github.com/kwonoj/protobuf-wasm wasm-patches
194-
cd wasm-patches && git checkout 4bba8b2f38b5004f87489642b6ca4525ae72fe7f && cd ..
195-
git apply wasm-patches/*.patch
194+
git submodule update --init --recursive
196195
./autogen.sh
197196
emconfigure ./configure --disable-shared CXXFLAGS="-O3 -flto"
198197
emmake make

libprotobuf-lite.a

-2.49 MB
Binary file not shown.

libprotobuf.a

-12.2 MB
Binary file not shown.

sdk_container.sh

+34-23
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,20 @@ set -e
2020
export DEBIAN_FRONTEND=noninteractive
2121
apt-get update
2222
apt-get upgrade -y
23-
apt-get install -y --no-install-recommends apt-utils ca-certificates
2423
apt-get autoremove -y
2524
apt-get clean
26-
apt-get install -y --no-install-recommends software-properties-common apt-transport-https git wget curl pkg-config autoconf autotools-dev automake libtool cmake python zlib1g-dev
25+
apt-get install -y --no-install-recommends ca-certificates git autoconf autotools-dev automake libtool cmake python-is-python3 zlib1g-dev make xz-utils libzstd-dev
2726

28-
# gcc-7
29-
apt-get install -y --no-install-recommends gcc-7 g++-7 cpp-7
30-
export CC=gcc-7
31-
export CXX=g++-7
32-
export CPP=cpp-7
27+
# The specific version of GCC does not actually matter as long as it's confirmed to work.
28+
# That's why we explicitly pin gcc version (in this case to gcc 13) - it's the version
29+
# which was tested to work.
30+
apt-get install -y --no-install-recommends gcc-13 g++-13 cpp-13
31+
export CC=gcc-13
32+
export CXX=g++-13
33+
export CPP=cpp-13
34+
35+
NUM_CPUS=$(nproc)
36+
JOBS=$((NUM_CPUS>1 ? NUM_CPUS-1 : NUM_CPUS))
3337

3438
# get $HOME
3539
cd
@@ -41,36 +45,43 @@ git checkout v3.9.1
4145
git submodule update --init --recursive
4246
./autogen.sh
4347
./configure
44-
make
48+
make -j $JOBS
4549
make check
4650
make install
4751
cd
4852
rm -rf protobuf
4953

54+
# This makes sure that installed dynamic libraries are visible to the dynamic
55+
# linker, because it seems like make install does not take care of that
56+
ldconfig
57+
5058
# emscripten
5159
git clone https://github.com/emscripten-core/emsdk.git
5260
cd emsdk
53-
./emsdk update-tags
54-
./emsdk install 3.1.7
55-
./emsdk activate 3.1.7
61+
git checkout 3.1.67
62+
./emsdk install --shallow 3.1.67
63+
./emsdk activate 3.1.67
5664
source ./emsdk_env.sh
5765
cd
5866

67+
git clone https://github.com/protocolbuffers/protobuf protobuf-wasm
68+
cd protobuf-wasm
69+
git checkout v3.9.1
70+
git submodule update --init --recursive
71+
./autogen.sh
72+
emconfigure ./configure --disable-shared CXXFLAGS="-O3 -flto"
73+
emmake make -j $JOBS
74+
cd
75+
76+
cp protobuf-wasm/src/.libs/libprotobuf-lite.a /sdk/libprotobuf-lite.a
77+
cp protobuf-wasm/src/.libs/libprotobuf.a /sdk/libprotobuf.a
78+
rm -rf protobuf-wasm
79+
5980
# abseil (optional)
6081
git clone https://github.com/abseil/abseil-cpp
6182
cd abseil-cpp
62-
git checkout 14550beb3b7b97195e483fb74b5efb906395c31e -b Jul302019 # Jul 30 2019
83+
git checkout 4447c7562e3bc702ade25105912dce503f0c4010 -b lts20240722 # Abseil LTS release 20240722.0
6384
emcmake cmake -DCMAKE_CXX_STANDARD=17 "."
64-
emmake make
85+
emmake make -j $JOBS
6586
cd
6687

67-
# WAVM (optional)
68-
apt-get install -y --no-install-recommends llvm-6.0-dev
69-
git clone https://github.com/WAVM/WAVM
70-
cd WAVM
71-
git checkout 1ec06cd202a922015c9041c5ed84f875453c4dc7 -b Oct152019 # Oct 15 2019
72-
cmake "."
73-
make
74-
make install
75-
cd
76-
rm -rf WAVM

0 commit comments

Comments
 (0)