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 17d873c commit 7d428b7Copy full SHA for 7d428b7
configure
@@ -917,6 +917,18 @@ case $CFG_BUILD in
917
esac
918
putvar CFG_LLDB_PYTHON
919
920
+# Do some sanity checks if running on buildbot
921
+# (these env vars are set by rust-buildbot)
922
+if [ -n "$RUST_DIST_SERVER" -a -n "$ALLOW_NONZERO_RLIMIT_CORE" ]; then
923
+ # Frequently the llvm submodule directory is broken by the build
924
+ # being killed
925
+ llvm_lock="${CFG_SRC_DIR}/.git/modules/src/llvm/index.lock"
926
+ if [ -e "$llvm_lock" ]; then
927
+ step_msg "removing $llvm_lock"
928
+ rm -f "$llvm_lock"
929
+ fi
930
+fi
931
+
932
step_msg "looking for target specific programs"
933
934
probe CFG_ADB adb
0 commit comments