@@ -821,51 +821,6 @@ if [ $(echo $python_version | grep -c '^Python 2\.7') -ne 1 ]; then
821821 err " Found $python_version , but Python 2.7 is required"
822822fi
823823
824- probe CFG_CLANG clang++
825- probe CFG_CCACHE ccache
826- probe CFG_GCC gcc
827- probe CFG_LD ld
828- probe CFG_VALGRIND valgrind
829- probe CFG_PERF perf
830- probe CFG_ISCC iscc
831- probe CFG_ANTLR4 antlr4
832- probe CFG_GRUN grun
833- probe CFG_FLEX flex
834- probe CFG_BISON bison
835- probe CFG_GDB gdb
836- probe CFG_LLDB lldb
837-
838- if [ -n " $CFG_ENABLE_NINJA " ]
839- then
840- probe CFG_NINJA ninja
841- if [ -z " $CFG_NINJA " ]
842- then
843- # On Debian and Fedora, the `ninja` binary is an IRC bot, so the build tool was
844- # renamed. Handle this case.
845- probe CFG_NINJA ninja-build
846- fi
847- fi
848-
849- # For building LLVM
850- if [ -z " $CFG_LLVM_ROOT " ]
851- then
852- probe_need CFG_CMAKE cmake
853- fi
854-
855- # On MacOS X, invoking `javac` pops up a dialog if the JDK is not
856- # installed. Since `javac` is only used if `antlr4` is available,
857- # probe for it only in this case.
858- if [ -n " $CFG_ANTLR4 " ]
859- then
860- CFG_ANTLR4_JAR=" \" $( find /usr/ -name antlr-complete.jar 2> /dev/null | head -n 1) \" "
861- if [ " x" = " x$CFG_ANTLR4_JAR " ]
862- then
863- CFG_ANTLR4_JAR=" \" $( find ~ -name antlr-complete.jar 2> /dev/null | head -n 1) \" "
864- fi
865- putvar CFG_ANTLR4_JAR $CFG_ANTLR4_JAR
866- probe CFG_JAVAC javac
867- fi
868-
869824# the valgrind rpass tests will fail if you don't have a valgrind, but they're
870825# only disabled if you opt out.
871826if [ -z " $CFG_VALGRIND " ]
@@ -927,10 +882,6 @@ if [ -n "$RUST_DIST_SERVER" -a -n "$ALLOW_NONZERO_RLIMIT_CORE" ]; then
927882 fi
928883fi
929884
930- step_msg " looking for target specific programs"
931-
932- probe CFG_ADB adb
933-
934885BIN_SUF=
935886if [ " $CFG_OSTYPE " = " pc-windows-gnu" ] || [ " $CFG_OSTYPE " = " pc-windows-msvc" ]
936887then
0 commit comments