From owner-svn-src-all@freebsd.org Sun Sep 22 18:37:39 2019 Return-Path: Delivered-To: svn-src-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 8689D12903E for ; Sun, 22 Sep 2019 18:37:39 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [IPv6:2610:1c1:1:606c::24b:4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46bx5b302qz44mr for ; Sun, 22 Sep 2019 18:37:39 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from mail-qt1-f181.google.com (mail-qt1-f181.google.com [209.85.160.181]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) (Authenticated sender: kevans) by smtp.freebsd.org (Postfix) with ESMTPSA id 3C859CE17 for ; Sun, 22 Sep 2019 18:37:39 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: by mail-qt1-f181.google.com with SMTP id o12so14694299qtf.3 for ; Sun, 22 Sep 2019 11:37:39 -0700 (PDT) X-Gm-Message-State: APjAAAVoDCmBgRYQSLd1OHE7Rl9dvuC8e5RH0K0lrAejKhrHSliM3qYk NvGZ8wcAak4ixCLUB8DWF3Vhanc0NYilWzRzrck= X-Received: by 2002:ac8:6918:: with SMTP id e24mt11983914qtr.60.1569177458581; Sun, 22 Sep 2019 11:37:38 -0700 (PDT) MIME-Version: 1.0 References: <201909221830.x8MIUKAu014184@repo.freebsd.org> In-Reply-To: <201909221830.x8MIUKAu014184@repo.freebsd.org> From: Kyle Evans Date: Sun, 22 Sep 2019 13:37:26 -0500 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r352604 - head/sys/mips/cavium Cc: src-committers , svn-src-all , svn-src-head Content-Type: text/plain; charset="UTF-8" X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Sep 2019 18:37:39 -0000 On Sun, Sep 22, 2019 at 1:30 PM Kyle Evans wrote: > > Author: kevans > Date: Sun Sep 22 18:30:19 2019 > New Revision: 352604 > URL: https://svnweb.freebsd.org/changeset/base/352604 > > Log: > octeon1: suppress a couple of warnings under clang > > These appear in octeon-sdk -- there are new releases, but they don't seem to > address the running issues in octeon-sdk. GCC4.2 is more than happy, but > clang is much less-so and most of them are fairly innocuous and perhaps a > by-product of their style guide, which may make some of the changes harder > to upstream (if this is even possible anymore). > > Modified: > head/sys/mips/cavium/std.octeon1 > > Modified: head/sys/mips/cavium/std.octeon1 > ============================================================================== > --- head/sys/mips/cavium/std.octeon1 Sun Sep 22 18:27:57 2019 (r352603) > +++ head/sys/mips/cavium/std.octeon1 Sun Sep 22 18:30:19 2019 (r352604) > @@ -7,3 +7,4 @@ cpu CPU_CNMIPS > makeoptions CFLAGS_PARAM_INLINE_UNIT_GROWTH=10000 > makeoptions CFLAGS_PARAM_LARGE_FUNCTION_GROWTH=100000 > makeoptions CFLAGS_ARCH_PARAMS="--param max-inline-insns-single=10000" > +makeoptions "CWARNFLAGS.clang"+="-Wno-parentheses-equality -Wno-pointer-sign" I meant to mention this... the extra quoting of "CWARNFLAGS.clang" is because config(8) doesn't see the dot as a valid character in an ID token, so unquoting it leaves us with a config(8) error -- we could resolve this by allowing periods in ID strings, but this doesn't seem to have bothered us thus far so I wonder if it's worth it.