From 7ab2bb91dc0dc1587bd5626b2388cad2043823b9 Mon Sep 17 00:00:00 2001 From: TomasBeranek Date: Wed, 15 Dec 2021 12:11:16 +0100 Subject: [PATCH] infer: Remove more incompatible options with Infer's internal Clang Closes: https://github.com/csutils/csmock/pull/49 --- scripts/install-infer.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/install-infer.sh b/scripts/install-infer.sh index a8bbeeed..8f6bc8de 100755 --- a/scripts/install-infer.sh +++ b/scripts/install-infer.sh @@ -98,6 +98,9 @@ then [ "$arg" = "-fvirtual-function-elimination" ] && continue [ "$arg" = "-flto=full" ] && continue [ "$arg" = "-fwhole-program-vtables" ] && continue + [ "$arg" = "-fno-leading-underscore" ] && continue + [ "$arg" = "-mno-avx256-split-unaligned-load" ] && continue + [ "$arg" = "-mno-avx256-split-unaligned-store" ] && continue set -- "$@" "$arg" done