Skip to content

DariuszOstolski/rust_ppc_e5500_template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This is a template Rust project to be able to cross compile for PowerPC E5500 processors.

The problem with powerpc64-unknown-linux-gnu target in Rust is that by default it requires AltiVec, which is not available on PowerPC E5500. What is more problematic std crate comes with AltiVec enabled so std create as well as other creates have to be recompiled.

Getting Started

Dependencies:

PowerPC GCC toolchain installation

Ubuntu 18.04/20.04.5 see ubuntu_20.04 branch.

Ubuntu 22.04 instructions to install powerpc cross compiler

sudo apt-get install gcc-11-powerpc64-linux-gnu
sudo update-alternatives --install /usr/bin/powerpc-linux-gnu-gcc powerpc-linux-gnu-gcc /usr/bin/powerpc64-linux-gnu-gcc-11 10

Installing dependencies

You will have to switch to nightly because std/core depends on nightly.

rustup default nightly
rustup component add rust-src
rustup target add powerpc64-unknown-linux-gnu
cargo install xargo

Building project

$ xargo build --target powerpc64-unknown-linux-gnu

Caveats / gotchas

  • See .cargo/config for linker configuration
  • If you have this error:
error[E0635]: unknown feature `llvm_asm`
 --> /home/rusty/.cargo/registry/src/github.com-1ecc6299db9ec823/compiler_builtins-0.1.29/src/lib.rs:3:12

There is a bug in cargo-xbuild (see: https://stackoverflow.com/a/61784361/4175326), execute following command:

cargo install cargo-xbuild --git https://github.com/rust-osdev/cargo-xbuild.git --branch master --debug --force

License

Licensed under:

Contributing

Unless you explicitly state otherwise, any contribution you intentionally submit for inclusion in the work, as defined in the MIT license, shall be licensed as above, without any additional terms or conditions.

About

Template Rust project for PowerPC E5500 cross compilation

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages