meson: remove dead dictionary access
[qemu/ar7.git] / target / loongarch / README
blob0b9dc0d40a04d1da3e925c79ca94b7ac0728c51e
1 - Introduction
3   LoongArch is the general processor architecture of Loongson.
5   The following versions of the LoongArch core are supported
6     core: 3A5000
7     https://github.com/loongson/LoongArch-Documentation/releases/download/2021.08.17/LoongArch-Vol1-v1.00-EN.pdf
9   We can get the latest loongarch documents at https://github.com/loongson/LoongArch-Documentation/tags.
12 - System emulation
14   You can reference docs/system/loongarch/loongson3.rst to get the information about system emulation of LoongArch.
16 - Linux-user emulation
18   We already support Linux user emulation. We can use LoongArch cross-tools to build LoongArch executables on X86 machines,
19   and We can also use qemu-loongarch64 to run LoongArch executables.
21   1. Config cross-tools env.
23      see System emulation.
25   2. Test tests/tcg/multiarch.
27      ./configure  --static  --prefix=/usr  --disable-werror --target-list="loongarch64-linux-user" --enable-debug
29      cd build
31      make && make check-tcg
33   3. Run LoongArch system basic command with loongarch-clfs-system.
35      - Config clfs env.
37        wget https://github.com/loongson/build-tools/releases/download/2022.05.29/loongarch64-clfs-system-5.0.tar.bz2
39        tar -vxf loongarch64-clfs-system-5.0.tar.bz2 -C /opt/clfs
41        cp /opt/clfs/lib64/ld-linux-loongarch-lp64d.so.1  /lib64
43        export LD_LIBRARY_PATH="/opt/clfs/lib64"
45      - Run LoongArch system basic command.
47        ./qemu-loongarch64  /opt/clfs/usr/bin/bash
48        ./qemu-loongarch64  /opt/clfs/usr/bin/ls
49        ./qemu-loongarch64  /opt/clfs/usr/bin/pwd
51 - Note.
52   We can get the latest LoongArch documents or LoongArch tools at https://github.com/loongson/