diff --git a/debian/changelog b/debian/changelog index d2b73270..3f7428b6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,11 @@ llvm-toolchain-18 (1:18.1.8-2~exp2) UNRELEASED; urgency=medium * d/p/clang-record-gcc-switches-by-default.patch: add a patch to force clang record gcc switches by default + [ Gianfranco Costamagna ] + * Rename check-libcxxabi in check-cxxabi. + * Rename check-libcxx in check-cxx + * Drop removed check-sanitizer (Closes: #1073201) + -- Gianfranco Costamagna Wed, 03 Jul 2024 08:05:35 +0200 llvm-toolchain-18 (1:18.1.8-2~exp1) experimental; urgency=medium diff --git a/debian/rules b/debian/rules index 07879c0d..1c31e7b3 100755 --- a/debian/rules +++ b/debian/rules @@ -584,7 +584,7 @@ ifneq (,$(filter coverity,$(DEB_BUILD_OPTIONS))) endif # enables cmake build targets like stage2-[target_name] -ENABLED_STAGE2_CMAKE_BUILD_TARGETS = check-all;check-llvm;check-clang;check-clang-tools;check-lld;check-libcxx;check-libcxxabi;check-mlir;check-libc;check-sanitizer;llvm-config;test-suite +ENABLED_STAGE2_CMAKE_BUILD_TARGETS = check-all;check-llvm;check-clang;check-clang-tools;check-lld;check-cxx;check-cxxabi;check-mlir;check-libc;llvm-config;test-suite %: dh $@ $(DH_OPTIONS) @@ -1521,19 +1521,16 @@ ifeq (${LLD_ENABLE},yes) ninja $(VERBOSE) -C $(TARGET_BUILD_STAGE2) check-lld || true endif -# Sanitizer - ninja $(VERBOSE) -C $(TARGET_BUILD_STAGE2) check-sanitizer || true - -# Libcxx - ninja $(VERBOSE) -C $(TARGET_BUILD_STAGE2) check-libcxx || true +# Cxx + ninja $(VERBOSE) -C $(TARGET_BUILD_STAGE2) check-cxx || true # Libc ifeq (${LIBC_ENABLE},yes) ninja $(VERBOSE) -C $(TARGET_BUILD_STAGE2) check-libc || true endif -# Libcxxabi - ninja $(VERBOSE) -C $(TARGET_BUILD_STAGE2) check-libcxxabi || true +# Cxxabi + ninja $(VERBOSE) -C $(TARGET_BUILD_STAGE2) check-cxxabi || true # MLIR ifeq (,$(filter $(DEB_HOST_ARCH), armel armhf i386 x32))