From 8860d76d78ac7fa28dfb981cde5e13ac950637d0 Mon Sep 17 00:00:00 2001 From: Andreas Enge Date: Fri, 19 Sep 2025 21:02:51 +0200 Subject: gnu: Remove clang-runtime-3.7. * gnu/packages/llvm.scm (clang-runtime-3.7): Delete variable. * gnu/packages/patches/clang-3.5-libsanitizer-ustat-fix.patch, gnu/packages/patches/clang-runtime-3.7-fix-build-with-python3.patch, gnu/packages/patches/clang-runtime-3.8-libsanitizer-mode-field.patch, gnu/packages/patches/clang-runtime-asan-build-fixes.patch: Remove files. * gnu/local.mk (dist_patch_DATA): Unregister files. Change-Id: I848b09d29585217b0cc3d2f9ac1867e8ee5e853c --- .../clang-runtime-3.7-fix-build-with-python3.patch | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 gnu/packages/patches/clang-runtime-3.7-fix-build-with-python3.patch (limited to 'gnu/packages/patches/clang-runtime-3.7-fix-build-with-python3.patch') diff --git a/gnu/packages/patches/clang-runtime-3.7-fix-build-with-python3.patch b/gnu/packages/patches/clang-runtime-3.7-fix-build-with-python3.patch deleted file mode 100644 index 042f0e025a..0000000000 --- a/gnu/packages/patches/clang-runtime-3.7-fix-build-with-python3.patch +++ /dev/null @@ -1,16 +0,0 @@ -Patch based on changes from -https://github.com/llvm/llvm-project/commit/c1fde4fa943fd03a3d40bc5d32b9e0045fd29208 - -diff --git a/lib/sanitizer_common/scripts/gen_dynamic_list.py b/lib/sanitizer_common/scripts/gen_dynamic_list.py -index 5ea2ca1..d7bc287 100755 ---- a/lib/sanitizer_common/scripts/gen_dynamic_list.py -+++ b/lib/sanitizer_common/scripts/gen_dynamic_list.py -@@ -100,7 +100,7 @@ def main(argv): - print('global:') - result.sort() - for f in result: -- print(' ' + f.encode('utf-8') + ';') -+ print(u' %s;' % f) - if args.version_list: - print('local:') - print(' *;') -- cgit v1.2.3