Update docker images for emscripten.

This commit is contained in:
Marenz
2022-08-25 17:09:46 +02:00
parent c4d9cdf643
commit 484c9d3ff0
4 changed files with 9 additions and 6 deletions
+3 -2
View File
@@ -62,11 +62,12 @@ then
echo -n "$CIRCLE_SHA1" >commit_hash.txt
fi
# Disable warnings for unqualified "move()" calls, introduced and enabled by
# Disable warnings for unqualified `move()` calls, introduced and enabled by
# default in clang-16 which is what the emscripten docker image uses.
# Additionally, disable the warning for unknown warnings here, as this script is
# also used with earlier clang versions.
CMAKE_CXX_FLAGS="-Wno-unqualified-std-cast-call -Wno-unknown-warning-option"
# TODO: This can be removed if and when all usages of `move()` in our codebase use the `std::` qualifier.
CMAKE_CXX_FLAGS="-Wno-unqualified-std-cast-call"
mkdir -p "$BUILD_DIR"