Skip to content

set correct TRT_LIBPATH for Linux, set missing TRT_OSSPATH #4172

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ To build the TensorRT-OSS components, you will first need the following software
git clone -b main https://github.com/nvidia/TensorRT TensorRT
cd TensorRT
git submodule update --init --recursive
export TRT_OSSPATH=`pwd`
```

2. #### (Optional - if not using TensorRT container) Specify the TensorRT GA release build path
Expand All @@ -82,7 +83,7 @@ To build the TensorRT-OSS components, you will first need the following software
```bash
cd ~/Downloads
tar -xvzf TensorRT-10.0.1.6.Linux.x86_64-gnu.cuda-12.4.tar.gz
export TRT_LIBPATH=`pwd`/TensorRT-10.0.1.6
export TRT_LIBPATH=`pwd`/TensorRT-10.0.1.6/lib
```

## Setting Up The Build Environment
Expand Down