Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions meta-chromium/recipes-browser/chromium/chromium-gn.inc
Original file line number Diff line number Diff line change
Expand Up @@ -493,8 +493,10 @@ do_copy_clang_library () {
if [ "${TARGET_ARCH}" != "${BUILD_ARCH}" ]; then
export CHROMIUM_BUILD_TRIPLET="$(echo ${RUST_BUILD_SYS} | sed 's:-oe-:-unknown-:')"
cd "${STAGING_LIBDIR_NATIVE}/clang"
rm -rf "latest/lib/${CHROMIUM_BUILD_TRIPLET}"
cp -ar latest/lib/linux "latest/lib/${CHROMIUM_BUILD_TRIPLET}"
if [ -d "latest/lib/linux" ]; then
rm -rf "latest/lib/${CHROMIUM_BUILD_TRIPLET}"
cp -ar latest/lib/linux "latest/lib/${CHROMIUM_BUILD_TRIPLET}"
fi
cd "latest/lib/${CHROMIUM_BUILD_TRIPLET}"

for file in *-"${BUILD_ARCH}".a *-"${BUILD_ARCH}hf".a; do
Expand Down
2 changes: 1 addition & 1 deletion meta-chromium/recipes-browser/chromium/chromium.inc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ HOMEPAGE = "https://www.chromium.org/Home"
CVE_PRODUCT = "chromium:chromium google:chrome"

SRC_URI = "https://commondatastorage.googleapis.com/chromium-browser-official/chromium-${PV}.tar.xz"
SRC_URI[sha256sum] = "cf6ddd8f31e860ecdfbacdf048b3c2494f264b91492a9693ab3060cba4b72a99"
SRC_URI[sha256sum] = "32e3a58aa7c3963f4c835cecf77762478dd04152f1d0b578440fd00152f13b29"
S = "${UNPACKDIR}/chromium-${PV}"

# GCC is not tested or officially supported upstream, and supporting it here
Expand Down