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:
parent
505197bfac
commit
ecf55b01c6
|
@ -50,11 +50,7 @@ if ! [[ -d "$OBJ_FOLDER/dist/firefox" ]]; then
|
||||||
exit 1;
|
exit 1;
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Copy the libstdc++ version we linked against.
|
if is_win; then
|
||||||
# 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
|
|
||||||
# Bundle vcruntime14_1.dll - see https://github.com/microsoft/playwright/issues/9974
|
# Bundle vcruntime14_1.dll - see https://github.com/microsoft/playwright/issues/9974
|
||||||
cd "$(printMSVCRedistDir)"
|
cd "$(printMSVCRedistDir)"
|
||||||
cp -t "${OBJ_FOLDER}/dist/firefox" vcruntime140_1.dll
|
cp -t "${OBJ_FOLDER}/dist/firefox" vcruntime140_1.dll
|
||||||
|
|
Loading…
Reference in New Issue