source: chapter04/creatingminlayout.xml@ 4d8854a

xry111/arm64 xry111/arm64-12.0
Last change on this file since 4d8854a was 4d8854a, checked in by Xi Ruoyao <xry111@…>, 20 months ago

arm64: don't create /lib64

The path to dynamic linker is /lib/ld-linux-aarch64.so.1, no hardcoded
/lib64. It's much better than x86_64 or MIPS64 IMO.

[As a LoongArch contributor & reviewer: we really should have removed
this stupid "64" in the early development stage of LoongArch ELF ABI.]

  • Property mode set to 100644
File size: 1.5 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="ch-tools-creatingminlayout">
9 <?dbhtml filename="creatingminlayout.html"?>
10
11 <title>Creating a limited directory layout in LFS filesystem</title>
12
13 <para>The first task performed in the LFS partition is to create a limited
14 directory hierarchy so that programs compiled in <xref
15 linkend="chapter-temporary-tools"/> (as well as glibc and libstdc++ in <xref
16 linkend="chapter-cross-tools"/>) may be installed in their final
17 location. This is needed so that those temporary programs be overwritten
18 when rebuilding them in <xref linkend="chapter-building-system"/>.</para>
19
20 <para>Create the required directory layout by running the following as
21 <systemitem class="username">root</systemitem>:</para>
22
23<screen><userinput>mkdir -pv $LFS/{etc,var} $LFS/usr/{bin,lib,sbin}
24
25for i in bin lib sbin; do
26 ln -sv usr/$i $LFS/$i
27done</userinput></screen>
28
29 <para>Programs in <xref linkend="chapter-temporary-tools"/> will be compiled
30 with a cross-compiler (more details in section <xref
31 linkend="ch-tools-toolchaintechnotes"/>). In order to separate this
32 cross-compiler from the other programs, it will be installed in a special
33 directory. Create this directory with:</para>
34
35<screen><userinput>mkdir -pv $LFS/tools</userinput></screen>
36
37</sect1>
Note: See TracBrowser for help on using the repository browser.