Title: [295379] trunk/Tools/flatpak/flatpakutils.py
Revision
295379
Author
[email protected]
Date
2022-06-08 06:26:15 -0700 (Wed, 08 Jun 2022)

Log Message

[Flatpak SDK] Bump to clang 14
https://bugs.webkit.org/show_bug.cgi?id=241411

Patch by Philippe Normand <[email protected]> on 2022-06-08
Reviewed by Adrian Perez de Castro.

The llvm14 extension recently appeared on Flathub. We already use clangd-14 so now both the compiler
and LSP server are on the same base.

* Tools/flatpak/flatpakutils.py:
(WebkitFlatpak.run_in_sandbox):
(WebkitFlatpak._get_dependency_packages):

Canonical link: https://commits.webkit.org/251387@main

Modified Paths

Diff

Modified: trunk/Tools/flatpak/flatpakutils.py (295378 => 295379)


--- trunk/Tools/flatpak/flatpakutils.py	2022-06-08 07:53:21 UTC (rev 295378)
+++ trunk/Tools/flatpak/flatpakutils.py	2022-06-08 13:26:15 UTC (rev 295379)
@@ -795,7 +795,7 @@
         sandbox_build_path = os.path.join(SANDBOX_SOURCE_ROOT, BUILD_ROOT_DIR_NAME, self.build_type)
         sandbox_environment = {
             "TEST_RUNNER_INJECTED_BUNDLE_FILENAME": os.path.join(sandbox_build_path, "lib/libTestRunnerInjectedBundle.so"),
-            "PATH": "/usr/lib/sdk/llvm13/bin:/usr/bin:/usr/lib/sdk/rust/bin/",
+            "PATH": "/usr/lib/sdk/llvm14/bin:/usr/bin:/usr/lib/sdk/rust/bin/",
         }
 
         if not args:
@@ -1256,7 +1256,7 @@
         packages = [self.runtime, self.sdk]
         packages.append(FlatpakPackage('org.webkit.Sdk.Debug', SDK_BRANCH,
                                        self.sdk_repo, arch))
-        packages.append(FlatpakPackage("org.freedesktop.Sdk.Extension.llvm13", SDK_BRANCH,
+        packages.append(FlatpakPackage("org.freedesktop.Sdk.Extension.llvm14", SDK_BRANCH,
                                        self.flathub_repo, arch))
         packages.append(FlatpakPackage("org.freedesktop.Platform.GL.default", SDK_BRANCH,
                                        self.flathub_repo, arch))
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to