1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
.. meta::
:description: Build and install rocThrust with the installation script
:keywords: install, building, rocThrust, AMD, ROCm, source code, installation script, Linux
********************************************************************
Building and installing rocThrust on Linux with the install script
********************************************************************
You can use the ``install`` script to build and install rocThrust on Linux. You can also use `CMake <./rocThrust-install-with-cmake.html>`_ if you want more build and installation options.
The ``install`` script is located in the ``rocThrust`` root directory. To build and install rocThrust with the ``install`` script, run:
.. code-block:: shell
./install --install
This command will also download and install rocPRIM.
To build rocThrust and generate tar, zip, and debian packages, run:
.. code-block:: shell
./install --package
To see a complete list of options, run:
.. code-block:: shell
./install --help
|