From b14ed54868d5c538685bcbaeecbe451abca6a807 Mon Sep 17 00:00:00 2001 From: 87dnz <135619827+87dnz@users.noreply.github.com> Date: Thu, 13 Mar 2025 17:56:30 +0100 Subject: [PATCH] Update crosstool_wrapper_driver_is_not_gcc.tpl replace `import pipes` with `import shlex as pipes` to fix `ModuleNotFoundError: No module named 'pipes'` --- .../crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_deps/toolchains/gpu/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc.tpl b/build_deps/toolchains/gpu/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc.tpl index 81c16c6125..8e178e44c8 100644 --- a/build_deps/toolchains/gpu/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc.tpl +++ b/build_deps/toolchains/gpu/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc.tpl @@ -43,7 +43,7 @@ import os import subprocess import re import sys -import pipes +import shlex as pipes # Template values set by cuda_autoconf. CPU_COMPILER = ('%{cpu_compiler}')