Difference between revisions of "Create Debian sysroots"

From Aram's Wiki
Jump to: navigation, search
(See also)
(Prerequisites)
Line 8: Line 8:
 
== Prerequisites ==
 
== Prerequisites ==
  
[[Debian Linux Post Install Steps| Debian]] or [[Ubuntu Linux Post Install Steps | Ubuntu]] or any system that can run [https://wiki.debian.org/Debootstrap | debootstrap].
+
[[Debian Linux Post Install Steps| Debian]] or [[Ubuntu Linux Post Install Steps | Ubuntu]] or any system that can run [https://wiki.debian.org/Debootstrap debootstrap].
  
 
== Install debootstrap ==
 
== Install 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

See also