devops: do not bundle `libstdc++` with Firefox builds (#16103)
Turns out we were bundling x86_64 `libstdc++` with aarch64 builds on Ubuntu, which was useless and implies that this library might not be needed at all.
This commit is contained in:
Родитель
505197bfac
Коммит
ecf55b01c6
|
@ -50,11 +50,7 @@ if ! [[ -d "$OBJ_FOLDER/dist/firefox" ]]; then
|
|||
exit 1;
|
||||
fi
|
||||
|
||||
# Copy the libstdc++ version we linked against.
|
||||
# TODO(aslushnikov): this won't be needed with official builds.
|
||||
if is_linux; then
|
||||
cp /usr/lib/x86_64-linux-gnu/libstdc++.so.6 "${OBJ_FOLDER}/dist/firefox/libstdc++.so.6"
|
||||
elif is_win; then
|
||||
if is_win; then
|
||||
# Bundle vcruntime14_1.dll - see https://github.com/microsoft/playwright/issues/9974
|
||||
cd "$(printMSVCRedistDir)"
|
||||
cp -t "${OBJ_FOLDER}/dist/firefox" vcruntime140_1.dll
|
||||
|
|
Загрузка…
Ссылка в новой задаче