We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb83f53 commit f4610a2Copy full SHA for f4610a2
1 file changed
scripts/build-env/manylinux.sh
@@ -57,14 +57,16 @@ then
57
else
58
echo "Build directory already exists."
59
fi
60
+
61
# Change to the build directory
62
cd build
63
# Configure the build with CMake
64
echo "Configuring the build with CMake..."
65
cmake .. \
66
-DCMAKE_C_COMPILER="/usr/bin/gcc" \
67
-DCMAKE_CXX_COMPILER="/usr/bin/g++" \
--DCMAKE_CUDA_COMPILER="$(which nvcc)"
68
+-DCMAKE_CUDA_COMPILER="$(which nvcc)" \
69
+-DCMAKE_CUDA_FLAGS="-ccbin /usr/bin/gcc"
70
cmake --build .
71
cmake --install .
72
0 commit comments