Skip to content
Open
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.qnx
qnx710
qnx800
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
# toolchains_rust
Rust toolchains

Rust toolchains and tools to help build rust apps in S-Core

## QNX Rust Compiler Builder

See [tools/qnx_rust_compiler_builder/README.md](tools/qnx_rust_compiler_builder/README.md) for instructions on how to build a Rust Compiler supporting
QNX 7.1 and QNX 8.0 in a docker build.
2 changes: 2 additions & 0 deletions tools/qnx_hello_world/.cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[build]
target = "x86_64-pc-nto-qnx710"
13 changes: 13 additions & 0 deletions tools/qnx_hello_world/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "qnx-rust-container-qnx710",
"image": "qnx-rust-container-qnx710:latest",
"customizations": {
"vscode": {
"extensions": [
"BarbossHack.crates-io",
"tamasfe.even-better-toml",
"rust-lang.rust-analyzer"
]
}
}
}
Loading