Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added note about compilers to install #1

Open
wants to merge 1 commit into
base: 0.10.1-minerva
Choose a base branch
from
Open
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
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ This repository contains a Rust wrapper around the [PSA Cryptography API](https:

* [`psa-crypto`](psa-crypto): a higher-level, more Rust-friendly interface

In order to cross-build for ARM using the "ci.sh" script, the gcc for arm needs to be installed:

sudo apt install gcc-12-arm-linux-gnueabihf gcc-arm-linux-gnueabihf \
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems sudo apt install gcc-arm-linux-gnueabihf gcc-aarch64-linux-gnu would suffice, and this works in more general situations.

(We can automatically get gcc-VERSION-arm-linux-gnueabihf and gcc-VERSION-aarch64-linux-gnu as dependencies, where "VERSION" is a gcc's version number depending on the Linux distributions.)

gcc-aarch64-linux-gnu gcc-12-aarch64-linux-gnu


## Notice

The PSA Crypto wrapper is currently work-in-progress. This repository is currently mainly a space for prototyping and design discussion.
Expand Down