From 192ff46cb18c44360536eb413eb185b92b5cd4d4 Mon Sep 17 00:00:00 2001 From: Rong Ou Date: Wed, 7 Apr 2021 21:27:09 -0700 Subject: [PATCH] fix GDS include path for version 0.95 (#7877) The GDS 0.95 release candidate moved the `cufile.h` file from the `lib64` directory to the `include` directory under `/usr/local/cuda`. Added the new directory but also kept the old one so older versions of GDS can still be built. Authors: - Rong Ou (https://github.com/rongou) Approvers: - Keith Kraus (https://github.com/kkraus14) URL: https://github.com/rapidsai/cudf/pull/7877 --- cpp/cmake/Modules/FindcuFile.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/cpp/cmake/Modules/FindcuFile.cmake b/cpp/cmake/Modules/FindcuFile.cmake index 4f67e186f42..880ad773369 100644 --- a/cpp/cmake/Modules/FindcuFile.cmake +++ b/cpp/cmake/Modules/FindcuFile.cmake @@ -62,6 +62,7 @@ find_path(cuFile_INCLUDE_DIR cufile.h HINTS ${PKG_cuFile_INCLUDE_DIRS} + /usr/local/cuda/include /usr/local/cuda/lib64 )