From owner-freebsd-current@FreeBSD.ORG Thu Oct 10 08:14:22 2013 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 7ED8BBC for ; Thu, 10 Oct 2013 08:14:22 +0000 (UTC) (envelope-from andrnils@gmail.com) Received: from mail-ob0-x232.google.com (mail-ob0-x232.google.com [IPv6:2607:f8b0:4003:c01::232]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 491082897 for ; Thu, 10 Oct 2013 08:14:22 +0000 (UTC) Received: by mail-ob0-f178.google.com with SMTP id uz6so1515247obc.9 for ; Thu, 10 Oct 2013 01:14:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=dJbVkLb6iE521T+wUmJGMMBsusZaYIEJjYIzVa3z+Ks=; b=z/AUd+KtbDTR+EjcNYzKHyz+o5POF24W+D2zynA6C5hKpO6VxIWl3tI+tYVzdehuAD mW3qefdOsh+ZcoRKTdrdmHOIcOyiZBz6n9m97JLC2bUqF8NYrKH+T8AEP3A7nrOhPmGt X6LEau53/0GKHX8hAR4gqN1k415lOZEeRde35I8GdHWAL3br6q0u4teXHqG8fXKw8anK GeHNlNzosR6V0RP9M8is5KYTMKyB3PJHvkOKIVqk8dKZS2OvRrFApByZh2q7TlqJZ4Ni CyPNLaTM5W7Buc8akkm7Qesco8dEC3YSQ6d/sH5vYJrME1nw/g1bsxFn8G9n0wtgsTlV VIog== MIME-Version: 1.0 X-Received: by 10.60.93.67 with SMTP id cs3mr9445433oeb.12.1381392861345; Thu, 10 Oct 2013 01:14:21 -0700 (PDT) Received: by 10.76.91.34 with HTTP; Thu, 10 Oct 2013 01:14:21 -0700 (PDT) In-Reply-To: References: <20131010013338.GA10499@troutmask.apl.washington.edu> Date: Thu, 10 Oct 2013 10:14:21 +0200 Message-ID: Subject: Re: /usr/src/lib/msun errors From: Andreas Nilsson To: Joe Nosay Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: freebsd-current , Steve Kargl X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Oct 2013 08:14:22 -0000 Since there is -Wall in your CFALGS there will be quite a few warnings, which combined with -Werror which promotes warnings to errors makes it fail. Try removing -Wall and see if it works. Also -mssse3 can trigger more subtle stuff. Best regards Andreas On Thu, Oct 10, 2013 at 9:49 AM, Joe Nosay wrote: > Yes, I did. To what extent did I screw up? > > # added by use.perl 2013-03-03 23:39:20 > PERL_VERSION=5.16.2 > RUBY_DEFAULT_VER=1.9 > ALLOW_SHARED_TEXTREL=1 > > CFLAGS+= -mssse3 -Wall > CXXFLAGS+= -mssse3 > > > > > On Wed, Oct 9, 2013 at 9:33 PM, Steve Kargl < > sgk@troutmask.apl.washington.edu> wrote: > > > On Wed, Oct 09, 2013 at 09:00:11PM -0400, Joe Nosay wrote: > > > Src is from 10/7/13 on i386. Base is from April. > > > > > cc -O2 -pipe -mssse3 -Wall -I/usr/src/lib/msun/x86 > > -I/usr/src/lib/msun/ld80 -I/usr/src/lib/msun/src > > -I/usr/src/lib/msun/../libc/include -I/usr/src/lib/msun/../libc/i386 > > -std=gnu99 -Qunused-arguments -fstack-protector -Wsystem-headers -Werror > > -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int > > -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality > > -Wno-unused-function -Wno-conversion -Wno-switch -Wno-switch-enum > > -Wno-knr-promoted-parameter -Wno-parentheses -c > > /usr/src/lib/msun/src/e_j0.c -o e_j0.o > > > /usr/src/lib/msun/src/e_j0.c:281:10: error: variable 'p' is used > > uninitialized whenever 'if' condition is false > > [-Werror,-Wsometimes-uninitialized] > > > > Are you setting CFLAGS in make.conf? > > > > -- > > Steve > > > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" >