@@ -1097,15 +1097,15 @@ if test "$llvm_cv_enable_crash_overrides" = "yes" ; then
1097
1097
fi
1098
1098
1099
1099
dnl List all possible targets
1100
- ALL_TARGETS="X86 Sparc PowerPC ARM AArch64 Mips XCore MSP430 CppBackend NVPTX Hexagon SystemZ R600"
1100
+ ALL_TARGETS="X86 Sparc PowerPC ARM AArch64 Mips XCore MSP430 CppBackend NVPTX Hexagon SystemZ R600 BPF "
1101
1101
AC_SUBST ( ALL_TARGETS ,$ALL_TARGETS )
1102
1102
1103
1103
dnl Allow specific targets to be specified for building (or not)
1104
1104
TARGETS_TO_BUILD=""
1105
1105
AC_ARG_ENABLE ( [ targets] ,AS_HELP_STRING ( [ --enable-targets] ,
1106
1106
[ Build specific host targets: all or target1,target2,... Valid targets are:
1107
1107
host, x86, x86_64, sparc, powerpc, arm64, arm, aarch64, mips, hexagon,
1108
- xcore, msp430, nvptx, systemz, r600, and cpp (default=all)] ) ,,
1108
+ xcore, msp430, nvptx, systemz, r600, bpf, and cpp (default=all)] ) ,,
1109
1109
enableval=all )
1110
1110
if test "$enableval" = host-only ; then
1111
1111
enableval=host
@@ -1121,6 +1121,7 @@ case "$enableval" in
1121
1121
aarch64) TARGETS_TO_BUILD="AArch64 $TARGETS_TO_BUILD" ;;
1122
1122
arm64) TARGETS_TO_BUILD="AArch64 $TARGETS_TO_BUILD" ;;
1123
1123
arm) TARGETS_TO_BUILD="ARM $TARGETS_TO_BUILD" ;;
1124
+ bpf) TARGETS_TO_BUILD="BPF $TARGETS_TO_BUILD" ;;
1124
1125
mips) TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;;
1125
1126
mipsel) TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;;
1126
1127
mips64) TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;;
0 commit comments