Registered User mNo edit summary Tag: 2017 source edit |
Registered User Tag: 2017 source edit |
||
(11 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{ApplicableFor | <noinclude>{{ApplicableFor | ||
|MPUs list=STM32MP13x, STM32MP15x, STM32MP25x | |MPUs list=STM32MP13x, STM32MP15x, STM32MP21x, STM32MP23x, STM32MP25x | ||
|MPUs checklist=STM32MP13x, STM32MP15x, STM32MP25x | |MPUs checklist=STM32MP13x, STM32MP15x, STM32MP21x, STM32MP23x, STM32MP25x | ||
}} | }} | ||
</noinclude> | |||
== Introduction == | == Introduction == | ||
This article describes how to develop Rust<ref>https://www.rust-lang.org</ref> applications using Cargo in an OpenSTLinux environment. | |||
This article describes how to develop Rust | |||
Rust is a system programming language that focuses on performance, safety, and concurrency. It is designed to be memory-safe and thread-safe, making it ideal for building reliable and efficient software. | Rust is a system programming language that focuses on performance, safety, and concurrency. It is designed to be memory-safe and thread-safe, making it ideal for building reliable and efficient software. | ||
Cargo is Rust's package manager and build tool, | Cargo is Rust's package manager and build tool, simplifying the process of managing dependencies, compiling code, and creating distributable packages. Together, Rust and Cargo provide a powerful and modern development environment for building high-performance applications. | ||
== Deploy the Rust SDK add-on == | == Deploy the Rust SDK add-on == | ||
To enable Rust support in the OpenSTLinux SDK, an add-on is necessary. To install this SDK add-on, | To enable Rust support in the OpenSTLinux SDK, an add-on is necessary. To install this SDK add-on, download the MPx-DEV-x86-RUST software for STM32MP1<ref>https://www.st.com/en/embedded-software/stm32mp1dev.html</ref> and/or for STM32MP2<ref>https://www.st.com/en/embedded-software/stm32mp2dev.html</ref>, and extract it to any location. Once extracted, and after [[STM32MPU_Developer_Package#Installing_the_SDK|installing]] and [[STM32MPU_Developer_Package#Starting_up_the_SDK|sourcing]] the SDK environment script, run the ''install.sh'' script from the SDK add-on. For instance: | ||
{{PC$}}tar -xf en.sdk-x86_64-stm32mpX-openstlinux-...-addon-rust.tar.gz | {{PC$}}tar -xf en.sdk-x86_64-stm32mpX-openstlinux-...-addon-rust.tar.gz | ||
Line 28: | Line 26: | ||
== Create, build, and run Rust applications == | == Create, build, and run Rust applications == | ||
At this point it is assumed OpenSTLinux SDK | At this point it is assumed OpenSTLinux SDK has been [[STM32MPU_Developer_Package#Installing_the_SDK|installed]] and [[STM32MPU_Developer_Package#Starting_up_the_SDK|set up]] correctly, and that the Rust SDK add-on has already been [[How_to_develop_a_Rust_Application#Deploy_the_Rust_SDK_add-on|deployed]]. | ||
=== Create === | === Create === | ||
Line 37: | Line 35: | ||
Created binary (application) `hello-world` package | Created binary (application) `hello-world` package | ||
This | This generates a directory that contains everything required to build a minimal Rust application: | ||
{{PC$}}tree hello-world | {{PC$}}tree hello-world | ||
Line 52: | Line 50: | ||
=== Build === | === Build === | ||
Assuming the OpenSTLinux SDK | Assuming the OpenSTLinux SDK has been [[STM32MPU_Developer_Package#Starting_up_the_SDK|set up]] correctly, Rust applications can be built for OpenSTLinux using the <code>cargo build</code> command. The example below uses the "hello-world" example created previously: | ||
{{PC$}}cd hello-world | {{PC$}}cd hello-world | ||
Line 61: | Line 59: | ||
=== Run === | === Run === | ||
Once built, the Rust application must be copied onto the running system at the expected location. | Once built, the Rust application must be copied onto the running system at the expected location. The example below uses the "hello-world" example and the <code>scp</code> command: | ||
{{PC$}}scp target/${CARGO_BUILD_TARGET}/debug/hello-world root@<board ip address>:/usr/bin | {{PC$}}scp target/${CARGO_BUILD_TARGET}/debug/hello-world root@<board ip address>:/usr/bin | ||
Line 74: | Line 72: | ||
=== "failed to run `rustc` to learn about target-specific information" === | === "failed to run `rustc` to learn about target-specific information" === | ||
The error message "''failed to run `rustc` to learn about target-specific information''" may indicate that the environment setup script was not sourced. If this is the case, run the following command to fix the issue: | |||
{{PC$}}source /opt/st/stm32mp1/sdk/environment-setup-* | {{PC$}}source /opt/st/stm32mp1/sdk/environment-setup-* | ||
Line 80: | Line 78: | ||
=== "Couldn't resolve host name" === | === "Couldn't resolve host name" === | ||
The error message "''Couldn't resolve host name''" while using Cargo may be due to issues with the network settings. Check the network settings (such as ''/etc/resolv.conf'' and the ''https_proxy'' env. variable) and make sure that they are configured correctly. | |||
network settings (/etc/resolv.conf | |||
=== "failed to authenticate while downloading repository" === | === "failed to authenticate while downloading repository" === | ||
The error message "''failed to authenticate while downloading repository''" may be caused by problems with the credential settings. To resolve this issue, verify these settings, such as ''ssh-agent'' or git's credential helper, and make sure that they are configured correctly. | |||
they are correctly | |||
Note: Even | '''Note''': Even when using an unencrypted SSH key, using ''ssh-agent'' is mandatory. For instance: | ||
ssh-agent. For instance: | |||
{{PC$}}eval $(ssh-agent) | {{PC$}}eval $(ssh-agent) | ||
Line 95: | Line 90: | ||
{{PC$}}cargo build | {{PC$}}cargo build | ||
... | ... | ||
<noinclude> | |||
[[Category:How_to_build_software]] | [[Category:How_to_build_software]] | ||
{{PublicationRequestId | 33586 | 2025-01-10 | }} | |||
</noinclude> |
Latest revision as of 16:35, 18 February 2025
1. Introduction[edit | edit source]
This article describes how to develop Rust[1] applications using Cargo in an OpenSTLinux environment. Rust is a system programming language that focuses on performance, safety, and concurrency. It is designed to be memory-safe and thread-safe, making it ideal for building reliable and efficient software.
Cargo is Rust's package manager and build tool, simplifying the process of managing dependencies, compiling code, and creating distributable packages. Together, Rust and Cargo provide a powerful and modern development environment for building high-performance applications.
2. Deploy the Rust SDK add-on[edit | edit source]
To enable Rust support in the OpenSTLinux SDK, an add-on is necessary. To install this SDK add-on, download the MPx-DEV-x86-RUST software for STM32MP1[2] and/or for STM32MP2[3], and extract it to any location. Once extracted, and after installing and sourcing the SDK environment script, run the install.sh script from the SDK add-on. For instance:
SDK-x86_64-stm32mpX-openstlinux-...-addon-rust/install.sh SDK add-on is going to be deployed into /opt/st/stm32mpX/sdk, do you agree [y/n]? y Deploying add-on files into /opt/st/stm32mpX/sdk SDK add-on has been successfully deployed and is ready to be used. You must source the environment setup script again. source /opt/st/stm32mpX/sdk/environment-setup-*tar -xf en.sdk-x86_64-stm32mpX-openstlinux-...-addon-rust.tar.gz source /opt/st/stm32mpX/sdk/environment-setup-... sudo --preserve-env
3. Create, build, and run Rust applications[edit | edit source]
At this point it is assumed OpenSTLinux SDK has been installed and set up correctly, and that the Rust SDK add-on has already been deployed.
3.1. Create[edit | edit source]
A Rust application can be created using the following command:
cargo new --bin hello-world
Created binary (application) `hello-world` package
This generates a directory that contains everything required to build a minimal Rust application:
tree hello-world
hello-world
├── Cargo.toml
└── src
└── main.rs
cat hello-world/src/main.rs
fn main() {
println!("Hello, world!");
}
3.2. Build[edit | edit source]
Assuming the OpenSTLinux SDK has been set up correctly, Rust applications can be built for OpenSTLinux using the cargo build
command. The example below uses the "hello-world" example created previously:
cd hello-world
cargo build
Compiling hello-world v0.1.0
Finished dev [unoptimized + debuginfo] target(s) in 0.17s
3.3. Run[edit | edit source]
Once built, the Rust application must be copied onto the running system at the expected location. The example below uses the "hello-world" example and the scp
command:
scp target/${CARGO_BUILD_TARGET}/debug/hello-world root@<board ip address>:/usr/bin
Now it can be executed easily from the running system:
hello-world
Hello, world!
4. Potential issues & solutions[edit | edit source]
4.1. "failed to run `rustc` to learn about target-specific information"[edit | edit source]
The error message "failed to run `rustc` to learn about target-specific information" may indicate that the environment setup script was not sourced. If this is the case, run the following command to fix the issue:
source /opt/st/stm32mp1/sdk/environment-setup-*
4.2. "Couldn't resolve host name"[edit | edit source]
The error message "Couldn't resolve host name" while using Cargo may be due to issues with the network settings. Check the network settings (such as /etc/resolv.conf and the https_proxy env. variable) and make sure that they are configured correctly.
4.3. "failed to authenticate while downloading repository"[edit | edit source]
The error message "failed to authenticate while downloading repository" may be caused by problems with the credential settings. To resolve this issue, verify these settings, such as ssh-agent or git's credential helper, and make sure that they are configured correctly.
Note: Even when using an unencrypted SSH key, using ssh-agent is mandatory. For instance:
eval $(ssh-agent)
ssh-add ~/.ssh/id_rsa
cargo build
...