Difference between revisions of "Create Debian sysroots"

From Aram's Wiki
Jump to: navigation, search
(Prerequisites)
(Install debootstrap)
Line 16: Line 16:
 
== Install debootstrap ==
 
== Install debootstrap ==
  
  sudo apt install -y debootstrap
+
  apt install -y debootstrap
  
 
== Run debootstrap ==
 
== Run debootstrap ==

Revision as of 13:48, 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.

Everything below runs as root:

sudo -i

Install debootstrap

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

See also