Add ProAI 8650 QNX 7.1 support on top of piotrkorkus_aarch64#12
Open
Xinq wants to merge 2 commits into
Open
Conversation
PiotrKorkus
reviewed
May 13, 2026
|
|
||
| bazel_dep(name = "score_crates") | ||
| single_version_override( | ||
| local_path_override( |
Collaborator
There was a problem hiding this comment.
no local overrides, please push to repo and use git_override with hash
| build_file = "//third_party/qnx710:qnx710_sdp.BUILD", | ||
| sha256 = "12cc587864aaf3a98e4f274b6f8aa1e82099d4d7d08a78289045a0f58eeb8411", | ||
| strip_prefix = "qnx710_sdp", | ||
| url = "file:///home/quan/proAI/reference_integration/third_party/qnx710/qnx710_sdp.tar", |
Collaborator
There was a problem hiding this comment.
we need to store it online
Comment on lines
+54
to
+55
| build:qnx-aarch64 --platforms=@score_bazel_platforms//:aarch64-qnx-sdp_7.1.0-posix | ||
| build:qnx-aarch64 --extra_toolchains=@score_qcc_aarch64_toolchain//:aarch64-qnx-sdp_7.1.0 |
Collaborator
There was a problem hiding this comment.
Put as separate config? So we can distinguish which version we are building
| build:qnx-aarch64 --config=_qnx_common | ||
| build:qnx-aarch64 --platforms=@score_bazel_platforms//:aarch64-qnx-sdp_8.0.0-posix | ||
| build:qnx-aarch64 --extra_toolchains=@score_qcc_aarch64_toolchain//:aarch64-qnx-sdp_8.0.0 | ||
| build:qnx-aarch64 --action_env=QNXLM_LICENSE_FILE |
| compatibility_level = 0, | ||
| ) | ||
|
|
||
| local_path_override( |
Collaborator
There was a problem hiding this comment.
same here, please dont use local overrides
| as great as that of any standard type not using alignment | ||
| specifiers. */ | ||
| typedef struct { | ||
| long long __max_align_ll __attribute__((__aligned__(__alignof__(long long)))); |
| specifiers. */ | ||
| typedef struct { | ||
| long long __max_align_ll __attribute__((__aligned__(__alignof__(long long)))); | ||
| long double __max_align_ld __attribute__((__aligned__(__alignof__(long double)))); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds the effective changes required to build and validate
reference_integrationon the ProAI 8650 QNX 7.1 target, based onpiotrkorkus_aarch64.Main updates in this PR:
score_cratescrate-universe fixBackground
The main runtime issue on the ProAI 8650 QNX 7.1 target was in the communication showcase.
The final confirmed root cause was not only related to
/tmp, but also that the LoLa discovery subtree under/var/data/tmp_discovery/mw_com_lola/...could enter a bad state whereinotify_add_watch()returnedEPERM.The effective mitigation in this PR is:
/var/data/tmp_discoveryipc_bridge_cppTarget validation also showed that
fsevmgrmust be running for the expected QNX fsnotify/inotify behavior.Runtime Alignment For ProAI 8650
This PR also keeps the runtime adjustments needed for the ProAI 8650 QNX 7.1 environment:
/mnt/showcases/mnt/score_kvs/tmpfor the affected runtime flowsValidation
Validated successfully on the ProAI 8650 QNX 7.1 target:
Build validation:
bazel --output_base=build/qnx-aarch64-finalclean build --config=qnx-aarch64 //showcases/standalone:commCleanup
Only effective changes are kept in this branch.
Removed from the final solution:
Notes
This PR is intended to bring the cleaned and validated ProAI 8650 QNX 7.1 support into
piotrkorkus_aarch64.