From 72d5dc91059d8d8304a28acebfd476987f3fede3 Mon Sep 17 00:00:00 2001 From: Sergei Lebedev Date: Wed, 15 Oct 2025 10:56:53 +0200 Subject: [PATCH] Copy `resources/v8_context_snapshot.bin` file --- tools/linuxdeployqt/shared.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/linuxdeployqt/shared.cpp b/tools/linuxdeployqt/shared.cpp index e4af7de2..639aee1d 100644 --- a/tools/linuxdeployqt/shared.cpp +++ b/tools/linuxdeployqt/shared.cpp @@ -1604,6 +1604,9 @@ void deployPlugins(const AppDirInfo &appDirInfo, const QString &pluginSourcePath sourcePath = QDir::cleanPath(qtDataPath + "/resources/icudtl.dat"); destinationPath = QDir::cleanPath(dstResources + "/icudtl.dat"); copyFilePrintStatus(sourcePath, destinationPath); + sourcePath = QDir::cleanPath(qtDataPath + "/resources/v8_context_snapshot.bin"); + destinationPath = QDir::cleanPath(dstResources + "/v8_context_snapshot.bin"); + copyFilePrintStatus(sourcePath, destinationPath); // Translations: sourcePath = QDir::cleanPath(qtTranslationsPath + "/qtwebengine_locales"); destinationPath = QDir::cleanPath(dstTranslations + "/qtwebengine_locales");