about summary refs log tree commit diff stats
path: root/docs/COMPILE.md
diff options
context:
space:
mode:
authorWANG Guidong <61500878+wangguidong1999@users.noreply.github.com>2024-08-26 14:19:06 +0800
committerGitHub <noreply@github.com>2024-08-26 08:19:06 +0200
commit9beb745765e9c99bad6410094a97bf0bf9ebc1eb (patch)
tree66e1b483568149a8aa510fdf6e550489c06f6a7c /docs/COMPILE.md
parent0b1dd757be7191fee1b575f6604b39b81b38d91e (diff)
downloadbox64-9beb745765e9c99bad6410094a97bf0bf9ebc1eb.tar.gz
box64-9beb745765e9c99bad6410094a97bf0bf9ebc1eb.zip
[RV64_DYNAREC] Fix some typos in docs and dynarec/rv64 (#1758)
* [Typo] fix some typo in docs and dynarec/rv64

* [Typo] fix some typo in docs and dynarec/rv64

* [Typo] fix some typo in dynarec/rv64

* [Typo] fix some typo in dynarec/rv64

* [Typo] fix some typo in docs
Diffstat (limited to 'docs/COMPILE.md')
-rw-r--r--docs/COMPILE.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/COMPILE.md b/docs/COMPILE.md
index 6e16eb8f..731502cb 100644
--- a/docs/COMPILE.md
+++ b/docs/COMPILE.md
@@ -98,7 +98,7 @@ Using a 64bit OS:
 

 Using a 64bit OS:

 

-Caution: please use gcc-11 or higher, older gcc dosen't know cortex-a78ae

+Caution: please use gcc-11 or higher, older gcc doesn't know cortex-a78ae

 ```

 -D TEGRA_T234=1 -D CMAKE_BUILD_TYPE=RelWithDebInfo

 ```

@@ -211,7 +211,7 @@ If you encounter some linking errors, try using `NOLOADADDR=ON` (`cmake -D NOLOA
 

 ### Use ccmake

 

-Alternatively, you can **use the curses-bases ccmake (or any other gui frontend for cmake)** to select wich platform to use interactively.

+Alternatively, you can **use the curses-based ccmake (or any other gui frontend for cmake)** to select which platform to use interactively.

 

 ### Customize your build

 

@@ -245,7 +245,7 @@ You need to add `-DWITH_MOLD=1` if GNU ld is extremely slow. Then run `mold -run
 

 #### Build a statically linked box64

 

-You can now build box64 staticaly linked, with `-DSTATICBUILD`. This is to use inside an x86_64 chroot. Note that this version of box64 will have just the minimum of wrapped libs. So only libc, libm and libpthread basically are wrapped. Other libs (like libGL or libvulkan, SDL2, etc...) will not be wrapped and x86_64 version will be used. It's designed to be used in docker image, or in headless server.

+You can now build box64 statically linked, with `-DSTATICBUILD`. This is to use inside an x86_64 chroot. Note that this version of box64 will have just the minimum of wrapped libs. So only libc, libm and libpthread basically are wrapped. Other libs (like libGL or libvulkan, SDL2, etc...) will not be wrapped and x86_64 version will be used. It's designed to be used in docker image, or in headless server.

 Also, the Static Build is highly experimental, but feedback are always welcomed.

 

 ----