From 3b0600c9f9ccc084f42af035bfaf3ce267a92695 Mon Sep 17 00:00:00 2001 From: Pawel Rutka Date: Fri, 6 Feb 2026 11:55:30 +0100 Subject: [PATCH 1/2] Enable QNX x86_64 --- rust/platform/triple_mappings.bzl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rust/platform/triple_mappings.bzl b/rust/platform/triple_mappings.bzl index 06866c52b0..e345a1783b 100644 --- a/rust/platform/triple_mappings.bzl +++ b/rust/platform/triple_mappings.bzl @@ -77,6 +77,8 @@ SUPPORTED_T2_PLATFORM_TRIPLES = { _T3_PLATFORM_TRIPLES = { "aarch64-unknown-nto-qnx710": _support(std = True, host_tools = False), "wasm64-unknown-unknown": _support(std = False, host_tools = False), + "x86_64-pc-nto-qnx800": _support(std = True, host_tools = False), + "x86_64-pc-nto-qnx710": _support(std = True, host_tools = False), } # The only T3 triples that are supported are ones with at least a stdlib From 2a1b9bbb5d7c281d2819c9e3134345093f870a38 Mon Sep 17 00:00:00 2001 From: Dan Calavrezo <195309321+dcalavrezo-qorix@users.noreply.github.com> Date: Thu, 12 Feb 2026 09:56:14 +0200 Subject: [PATCH 2/2] fixed: order fix Fix linting issue Signed-off-by: Dan Calavrezo <195309321+dcalavrezo-qorix@users.noreply.github.com> --- rust/platform/triple_mappings.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/platform/triple_mappings.bzl b/rust/platform/triple_mappings.bzl index e345a1783b..cd123b3c4a 100644 --- a/rust/platform/triple_mappings.bzl +++ b/rust/platform/triple_mappings.bzl @@ -77,8 +77,8 @@ SUPPORTED_T2_PLATFORM_TRIPLES = { _T3_PLATFORM_TRIPLES = { "aarch64-unknown-nto-qnx710": _support(std = True, host_tools = False), "wasm64-unknown-unknown": _support(std = False, host_tools = False), - "x86_64-pc-nto-qnx800": _support(std = True, host_tools = False), "x86_64-pc-nto-qnx710": _support(std = True, host_tools = False), + "x86_64-pc-nto-qnx800": _support(std = True, host_tools = False), } # The only T3 triples that are supported are ones with at least a stdlib