We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3854f4b commit 47c07d0Copy full SHA for 47c07d0
.ci/scripts/setup-linux.sh
@@ -13,6 +13,12 @@ source "$(dirname "${BASH_SOURCE[0]}")/utils.sh"
13
read -r BUILD_TOOL BUILD_MODE EDITABLE < <(parse_args "$@")
14
echo "Build tool: $BUILD_TOOL, Mode: $BUILD_MODE"
15
16
+# Fix for libcxx version issues with PyTorch prebuilts.
17
+# Tracking in https://github.com/pytorch/executorch/issues/14679.
18
+if [ "$(uname -m)" != "aarch64" ]; then
19
+ conda install -c conda-forge libstdcxx-ng
20
+fi
21
+
22
# As Linux job is running inside a Docker container, all of its dependencies
23
# have already been installed, so we use PyTorch build from source here instead
24
# of nightly. This allows CI to test against latest commits from PyTorch
0 commit comments