source

muntsos_raspberrypi1

11.0.0

MuntsOS Embedded Linux support for ARMv6 Raspberry Pi 1 targets

11.0.0

Introduction

This crate modifies an Alire program project to build a cross-compiled program for a MuntsOS Embedded Linux ARMv6 Raspberry Pi 1 target computer.

The MuntsOS Embedded Linux cross toolchain packages must be installed on your development computer before you can use this crate. See:

Application Note #1 for Debian Linux distributions
Application Note #2 for RPM Linux distributions
Application Note #24 for x86-64 Windows 10 or 11.

Environment Variables

If ALIRE_DISABLESTYLECHECKS is set to yes, the postfetch script will disable style checking in the project .gpr file.

If ALIRE_INSTALLMAKEFILE is set to yes, the postfetch script will install an optional but useful Makefile to the project directory.

You can add the following to ~/.bashrc or its equivalent to permanently define these environment variables:

export ALIRE_DISABLESTYLECHECKS=yes
export ALIRE_INSTALLMAKEFILE=yes

Example

The following commands illustrate how to create an Alire program project that will cross-compile a program to run on a MuntsOS Embedded Linux target computer. The result is a pristine (i.e. all temporary, working and deliverable files removed) project, suitable for checking into a source code control repository.

alr -n init --bin myexample
cd myexample
alr -n with muntsos_raspberrypi1
ALIRE_DISABLESTYLECHECKS=yes ALIRE_INSTALLMAKEFILE=yes alr action -r post-fetch
make reallyclean

See also Application Note #7.