diff options
| author | leonpano2006 <leonpano20060507@gmail.com> | 2024-01-25 23:04:20 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-25 23:04:20 +0100 |
| commit | 0ee5174e18631815137e59c0a8f7fd6a38f484d3 (patch) | |
| tree | b5de6ea30d3c0a4f76e2bd2f1ca26f836eb63ea2 /docs | |
| parent | 0004f193251f9e2a3eec9866a1caaaca58fe0141 (diff) | |
| download | box64-0ee5174e18631815137e59c0a8f7fd6a38f484d3.tar.gz box64-0ee5174e18631815137e59c0a8f7fd6a38f484d3.zip | |
add optimize build flag for Jetson orin and xavier (#1219)
* add optmized options for Jetson xavier and orin * Update CMakeLists.txt * Update COMPILE.md add info for build on jetson orin and xavier
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/COMPILE.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/COMPILE.md b/docs/COMPILE.md index dbba30f3..1fa65614 100644 --- a/docs/COMPILE.md +++ b/docs/COMPILE.md @@ -93,6 +93,22 @@ Using a 64bit OS: -D TEGRAX1=1 -D CMAKE_BUILD_TYPE=RelWithDebInfo ``` +#### for Jetson Xavier/T194 + +Using a 64bit OS: + +``` +-D TEGRA_T194=1 -D CMAKE_BUILD_TYPE=RelWithDebInfo +``` + +#### for Jetson Orin/T234 + +Using a 64bit OS: + +Caution: please use gcc-11 or higher, older gcc dosen't know cortex-a78ae +``` +-D TEGRA_T234=1 -D CMAKE_BUILD_TYPE=RelWithDebInfo +``` #### for ODROID N2/N2+ |