diff --git a/debian/changelog b/debian/changelog index 1c967c84..82ea9253 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +llvm-toolchain-snapshot (1:15~++20220615092632+f0e608de27b3-1~exp1) UNRELEASED; urgency=medium + + * experimental New snapshot release + * Remove debian/patches/x86-fuzzer.patch (done differently upstream) + + -- Sylvestre Ledru Wed, 15 Jun 2022 09:26:46 +0200 + llvm-toolchain-snapshot (1:15~++20220509105605+460fc79a080b-1~exp4) UNRELEASED; urgency=medium [ John Paul Adrian Glaubitz ] diff --git a/debian/patches/series b/debian/patches/series index 3bf7e644..84149a9b 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -117,8 +117,6 @@ bootstrap-fix-include-next.diff #try-to-unbreak-thinlto.diff #D67877-cmake-clang-example.patch -x86-fuzzer.patch - python3-shebang.patch print-lldb-path.patch libcxx-armhf-ftbfs.diff diff --git a/debian/patches/x86-fuzzer.patch b/debian/patches/x86-fuzzer.patch deleted file mode 100644 index be07819f..00000000 --- a/debian/patches/x86-fuzzer.patch +++ /dev/null @@ -1,16 +0,0 @@ -Description: fuzzer: EMULATION_ARGUMENT is also required when building on i386 for x86_64 -Author: Adrian Bunk - -Index: llvm-toolchain-snapshot_15~++20220407011631+46f0e2ceb487/compiler-rt/lib/fuzzer/CMakeLists.txt -=================================================================== ---- llvm-toolchain-snapshot_15~++20220407011631+46f0e2ceb487.orig/compiler-rt/lib/fuzzer/CMakeLists.txt -+++ llvm-toolchain-snapshot_15~++20220407011631+46f0e2ceb487/compiler-rt/lib/fuzzer/CMakeLists.txt -@@ -140,6 +140,8 @@ if(OS_NAME MATCHES "Linux|Fuchsia" AND - macro(partially_link_libcxx name dir arch) - if(${arch} MATCHES "i386") - set(EMULATION_ARGUMENT "-m" "elf_i386") -+ elseif(${arch} MATCHES "x86_64") -+ set(EMULATION_ARGUMENT "-m" "elf_x86_64") - else() - set(EMULATION_ARGUMENT "") - endif()