From 5c3756bccd4058039f5e62e49b0d12ddaa507400 Mon Sep 17 00:00:00 2001 From: idriskalp Date: Thu, 21 Oct 2021 23:39:31 +0300 Subject: [PATCH] llvm 13.0.0. --- programming/build/llvm/actions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/programming/build/llvm/actions.py b/programming/build/llvm/actions.py index 8c33bcf4f9..c53c09a20b 100644 --- a/programming/build/llvm/actions.py +++ b/programming/build/llvm/actions.py @@ -26,8 +26,8 @@ def setup(): pisitools.ldflags.add("-fuse-ld=lld") pisitools.cflags.remove("-D_FORTIFY_SOURCE=2") pisitools.cxxflags.remove("-D_FORTIFY_SOURCE=2") - pisitools.cflags.add("-mllvm -polly") - pisitools.cxxflags.add("-mllvm -polly") + pisitools.cflags.add("-mllvm -polly -Wno-unused-command-line-argument") + pisitools.cxxflags.add("-mllvm -polly -Wno-unused-command-line-argument") shelltools.export("CC", "clang") shelltools.export("CXX", "clang++") shelltools.export("AR", "llvm-ar")