From a35ef7b9f55dddd8fd068c2857f9359e882f6f19 Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Sun, 1 Mar 2026 21:39:44 +0100 Subject: [PATCH] Remove config/llvm.toml It is no longer necessary. --- config/llvm.toml | 30 ------------------------------ config/x86_64/llvm.toml | 3 --- 2 files changed, 33 deletions(-) delete mode 100644 config/llvm.toml delete mode 100644 config/x86_64/llvm.toml diff --git a/config/llvm.toml b/config/llvm.toml deleted file mode 100644 index 20f33c43..00000000 --- a/config/llvm.toml +++ /dev/null @@ -1,30 +0,0 @@ -# # Configuration to create "llvm-config" script - -include = ["base.toml"] - -[general] -filesystem_size = 2048 - -[packages] -bash = {} -llvm20 = {} - -[[files]] -path = "/usr/lib/init.d/99_gen_llvm-config-generate" -data = """ -requires_weak 00_drivers -bash /usr/bin/llvm-config-generate -""" - -[[files]] -path = "/usr/bin/llvm-config-generate" -data = """ -for flag in --version --bindir --cppflags --cxxflags --includedir --ldflags --libdir --system-libs --targets-built --has-rtti --shared-mode -do - echo -e "'$flag': '$(llvm-config $flag)'," -done -for component in $(llvm-config --components) -do - echo -e "'$component': '$(llvm-config --libs $component)'," -done -""" diff --git a/config/x86_64/llvm.toml b/config/x86_64/llvm.toml deleted file mode 100644 index 5aa7e94b..00000000 --- a/config/x86_64/llvm.toml +++ /dev/null @@ -1,3 +0,0 @@ -# Configuration to create "llvm-config" script - -include = ["../llvm.toml"]