Xavier/JetPack 5.0.2/Compiling Code: Difference between revisions

From RidgeRun Developer Wiki
No edit summary
No edit summary
Line 6: Line 6:
-->
-->


This section is a guide to compile JetPack 4.1 from source.
This wiki will guide you through the process of building the kernel for the NVIDIA Jetson Xavier. The process is divided in two different steps:
# Install the toolchain (set of tools required to build the kernel)
# Build the actual kernel
 
This wiki was tested in a fresh installation of Ubuntu 16.04.
 
 
__TOC__
 
= Dependencies =
 
Make sure the following dependencies are installed on your system:
 
* wget
* lbzip2
* build-essential
* bc
* zip
* libgmp-dev
* libmpfr-dev
* libmpc-dev
* vim-common # For xxd
 
In Debian based systems you can run the following:
 
<syntaxhighlight lang=bash>
sudo apt install wget lbzip2 build-essential bc zip libgmp-dev libmpfr-dev libmpc-dev vim-common
</syntaxhighlight>





Revision as of 20:42, 24 October 2018




  Index  





This wiki will guide you through the process of building the kernel for the NVIDIA Jetson Xavier. The process is divided in two different steps:

  1. Install the toolchain (set of tools required to build the kernel)
  2. Build the actual kernel

This wiki was tested in a fresh installation of Ubuntu 16.04.


Dependencies

Make sure the following dependencies are installed on your system:

  • wget
  • lbzip2
  • build-essential
  • bc
  • zip
  • libgmp-dev
  • libmpfr-dev
  • libmpc-dev
  • vim-common # For xxd

In Debian based systems you can run the following:

sudo apt install wget lbzip2 build-essential bc zip libgmp-dev libmpfr-dev libmpc-dev vim-common



[[Xavier/<Replace with "previous" page>|Previous: <Replace with "previous" page>]] Index [[Xavier/<Replace with "next" page>|Next: <Replace with "next" page>]]