blob: 9dde0857696e742d54310c5ce89bedcd35b9482a [file] [log] [blame]
# Copyright 2022 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# See comments in the hook.
. /mnt/host/source/src/scripts/chroot_version_hooks.d/204_zstd
# Force all boards to re-emerge sys-libs/libcxxabi sys-libs/libcxx.
# This is required for switch to runtimes builds (b/204093890).
sudo emerge -gqu --nodeps sys-libs/libcxxabi sys-libs/libcxx
for board_root in /build/*; do
board_name=${board_root##*/}
if [[ -d "${board_root}/var/db/pkg" ]]; then
emerge-${board_name} -gqu --nodeps sys-libs/libcxxabi sys-libs/libcxx
fi
done