Difference between revisions of "Create Debian sysroots"
(→Prerequisites) |
(→Run debootstrap) |
||
Line 16: | Line 16: | ||
== Run debootstrap == | == Run debootstrap == | ||
− | + | <code>for arch in amd64 arm64 mips mips64el ppc64el; do sudo debootstrap --arch $arch --variant=buildd stable debian-$arch http://deb.debian.org/debian; done</code> | |
== See also == | == See also == | ||
* [https://wiki.debian.org/Debootstrap debootstrap] | * [https://wiki.debian.org/Debootstrap debootstrap] |
Revision as of 12:47, 24 November 2019
Introduction
We'll create Debian sysroots suitable for a GCC cross compiler.
Prerequisites
Debian or Ubuntu or any system that can run debootstrap.
Install debootstrap
sudo apt install -y debootstrap
Run debootstrap
for arch in amd64 arm64 mips mips64el ppc64el; do sudo debootstrap --arch $arch --variant=buildd stable debian-$arch http://deb.debian.org/debian; done