From owner-freebsd-ppc@freebsd.org Sun Feb 18 11:03:49 2018 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 810ABF25DE3 for ; Sun, 18 Feb 2018 11:03:49 +0000 (UTC) (envelope-from jau789@gmail.com) Received: from mail-lf0-x233.google.com (mail-lf0-x233.google.com [IPv6:2a00:1450:4010:c07::233]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D318F7101D for ; Sun, 18 Feb 2018 11:03:48 +0000 (UTC) (envelope-from jau789@gmail.com) Received: by mail-lf0-x233.google.com with SMTP id v9so7463746lfa.11 for ; Sun, 18 Feb 2018 03:03:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=to:from:subject:message-id:date:user-agent:mime-version :content-language; bh=f3pqBs8VMjcCVl8wvgoq4jgKqDzdGbgiv0Ct/IzgG50=; b=FS7QA+6nE3U87rYqrRT3/16+w6dEJiup5Dc9SkR7g9CC2XVnAwRAUcmsFHd0ZheVZ3 CXoxWwzVRdsj7duIKEEr7b/av57JyIa4TtYyldhR0U8JRtQDQXCt/ZzQ4jz5UFoQLuL6 /10MieDyr0MQJcjvyCjIFHu/mB+arwsTlT6buEW02IXZpcQTHbr20UioyqJVbeezJ3kp pTN9KVXnjitrwk/6UIuy76oASCD38WTLgY7p/RIGKlV1TjU9QKMs8CiEwr6HDv7MLhRH ONRiaIUTbf/jq2QvfTMWQ0yDXUFTavgZ/rCQbcmJ5+BYGo8wCR5Bp2BZcYeIv36eISvN 9HrQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:to:from:subject:message-id:date:user-agent :mime-version:content-language; bh=f3pqBs8VMjcCVl8wvgoq4jgKqDzdGbgiv0Ct/IzgG50=; b=TsrihhZOX38kg4onoCsZx7o8SCotpJFEQXknsp5UBq76Yt1ApZFZiSVZN7J0R4hXwW 5mfMFpwV9K5fQEMRq9RBhIpMV5zp7HFqMdgLJ4a9qiKQBZl59KFMAKc2tTvYcPEtJ+rF 6pMbIP9bHlTpUCb9vVqmom6z28fVOG0/K3C/9gnUcrJ1On++wUD0b+U0DPlNhCkhvvEu tfvr4XKCz87ZYcD/opdW6b8osu/4K/b9BC14LoP1cdKzxM8Eg/C+tQ4qRdhYhvrc9wVH Keqp/rii86DeTQklmoVIzYsgR2GjtX17mccNyutgBdkhUuJAKEEdaFJnyFHkGO6SEUZt arXg== X-Gm-Message-State: APf1xPCyeWHVDr9s/5tQSgZ3QX0l+s6udokGmdxc3MW6LWYswbBjdK6t 7tJM0AD+fyBqjT3CVPmyfWz56w== X-Google-Smtp-Source: AH8x226nQZo/+2uEeXuwYGovqaKBMno61zwhAMmvOg58AANvzHqZAdsLID4APxXBlU8Q/c3qZHetpQ== X-Received: by 10.25.195.216 with SMTP id t207mr6456502lff.60.1518951826418; Sun, 18 Feb 2018 03:03:46 -0800 (PST) Received: from [192.168.1.131] (xdsl-205-1.nblnetworks.fi. [83.145.205.1]) by smtp.googlemail.com with ESMTPSA id l136sm4523217lfb.59.2018.02.18.03.03.45 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 18 Feb 2018 03:03:45 -0800 (PST) To: FreeBSD PowerPC ML From: "Jukka A. Ukkonen" Subject: "make buildworld" failures in FreeBSD-10.4-stable on ppc Message-ID: Date: Sun, 18 Feb 2018 13:03:44 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.6.0 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------357B9A704DC706A211CF3CC8" Content-Language: en-GB X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Feb 2018 11:03:49 -0000 This is a multi-part message in MIME format. --------------357B9A704DC706A211CF3CC8 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit For a while I had problems with freebsd-10.4-stable builds on ppc. Both kernel-toolchain and buildkernel worked just fine but buildworld persistently failed while the old gcc was compiling SemaInit.cpp. Apparently the old gcc did not like using auto variables like this... if (auto *D = Entity.getDecl()) when I changed that to read... if (Decl *D = Entity.getDecl()) buildworld completed just fine again. There is a proper patch attached. It would be nice if someone with the proper commit bit merged the change to the common code base. --jau --------------357B9A704DC706A211CF3CC8 Content-Type: text/x-patch; name="Clang_SemaInit.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="Clang_SemaInit.patch" Index: contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp =================================================================== --- contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp (revision 329366) +++ contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp (working copy) @@ -6316,7 +6316,7 @@ QualType T = DestType->getAs()->getPointeeType(); diagnoseListInit(S, InitializedEntity::InitializeTemporary(T), InitList); SourceLocation Loc = InitList->getLocStart(); - if (auto *D = Entity.getDecl()) + if (Decl *D = Entity.getDecl()) Loc = D->getLocation(); S.Diag(Loc, diag::note_in_reference_temporary_list_initializer) << T; return; --------------357B9A704DC706A211CF3CC8-- From owner-freebsd-ppc@freebsd.org Mon Feb 19 03:32:28 2018 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 33357F2256B for ; Mon, 19 Feb 2018 03:32:28 +0000 (UTC) (envelope-from marklmi26-fbsd@yahoo.com) Received: from sonic303-21.consmr.mail.gq1.yahoo.com (sonic303-21.consmr.mail.gq1.yahoo.com [98.137.64.202]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ACD987CECE for ; Mon, 19 Feb 2018 03:32:27 +0000 (UTC) (envelope-from marklmi26-fbsd@yahoo.com) X-YMail-OSG: rSTg3mgVM1m7HaxLQ9r89wlxSmROF2MIcqLwvCzp5dP78nSf.0VQl4FZGQ5oQ9b 2BfPMW75hNoEolMbezcG.LxS_xLUd29Py_v.6M3x_PdFWazD0IjgYeRbAElLx0ryJJefREc39fKW RvKFEzNVK5HHDBvI9baZ2OQtP_IRGmlGRH_ov9j1jyK9WhzJa8ewW9d.Lqj5FuDscNlohVSxJt0W mT8Qq_joFAUGL1ig_mhsp9xl4OIgTk435Ht77cPFuj8yCSxhHJtL_NYb9QnJyLht4OKuKMAMtarX xueaohgrumHEXnRcm9QKFlYVwaLukfGc4YGFR5DH2StCZcRnnNsmZQ.tGLxWuwzq_G1M2Vz272Ub 6cSpFZr6nl36gZc7ntqiBkGv0K9gTH_m8mGoGh4ng277C6lc4LletN0q5MylVA7z9nIUZS5tEL3A W0CbqwaapNNe.icRyOc1xWHUmifR1aK4POIMivQZIXMrnX1azBxS27KR15iIRothxxw2E Received: from sonic.gate.mail.ne1.yahoo.com by sonic303.consmr.mail.gq1.yahoo.com with HTTP; Mon, 19 Feb 2018 03:32:26 +0000 Received: from smtpgate101.mail.gq1.yahoo.com (EHLO [192.168.1.25]) ([10.214.169.33]) by smtp402.mail.gq1.yahoo.com (JAMES SMTP Server ) with ESMTPA ID 04ab64547a3d5dda105e3784a99041b0; Mon, 19 Feb 2018 03:12:12 +0000 (UTC) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 11.2 \(3445.5.20\)) Subject: Re: Is the clang 5.0.1 use of .rela.plt and R_PPC64_JMP_SLOT for kernel modules a llvm issue? Just a FreeBSD one? (Still true of clang 6.) From: Mark Millard In-Reply-To: <2BD5FD21-95E7-4661-B8B9-2FDCDB986149@dsl-only.net> Date: Sun, 18 Feb 2018 19:12:11 -0800 Cc: Justin Hibbits , Nathan Whitehorn , FreeBSD Hackers , FreeBSD PowerPC ML Content-Transfer-Encoding: quoted-printable Message-Id: <6F547F69-2821-40D3-AD89-6481F576C6EF@yahoo.com> References: <39C042C5-9800-464C-84AC-677DB45DA1C1@dsl-only.net> <244D5C85-E1E7-4349-A46A-1D275D54833F@dsl-only.net> <55A9388E-2C04-4388-A4E9-F25574FAF129@dsl-only.net> <68EA105F-3ADF-4CBB-BD59-7A9F18E52DB3@dsl-only.net> <313C2310-ABEF-4BEE-A853-A9965680C3AC@dsl-only.net> <2BD5FD21-95E7-4661-B8B9-2FDCDB986149@dsl-only.net> To: Ed Maste , Dimitry Andric X-Mailer: Apple Mail (2.3445.5.20) X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Feb 2018 03:32:28 -0000 [Notes on clang 6 properties for this. Also note: newer Email address than the original.] On 2017-Dec-29, at 4:18 PM, Mark Millard wrote: > I've not been able to figure out if I should submit something > into llvm's bugzilla for the powerpc64 switching to .rela.plt > and R_PPC64_JMP_SLOT for kernel modules from the earlier > .rela.dyn and R/PPC64_RELATIVE and R_PPC64_ADDR64 for kernel > modules. (I do not know if powerpc would also have the issue > since other things have been stopping that build for a long > time.) >=20 > Do one or more of you have a clue? >=20 > Reminder: >=20 >=20 > I have submitted FreeBSD bugzilla 224561 for the issue. >=20 > The difference in the likes of filemon.ko > produced by system clang 5.0.1 vs. > devel/powerpc64-xtoolchain-gcc is. . . >=20 > clang 5.0.1: >=20 > Relocation section with addend (.rela.plt): > r_offset r_info r_type st_value st_name = + r_addend > 000000014480 000300000015 R_PPC64_JMP_SLOT 0000000000000000 = copyinstr + 0 > 000000014488 000400000015 R_PPC64_JMP_SLOT 0000000000000000 = devfs_set_cdevpriv + 0 > . . . I finally did some updating of part of my FreeBSD environment, jumping something like 2000 revision numbers . . . Under head -r329542 and its clang 6 there is still a "Relocation section with addend (.rela.plt)" that uses R_PPC64_JMP_SLOT r_types. (This is using devel/powerpc64-binutils .) (There was and is some .rela.dyn and R_PPC64_RELATIVE/R_PPC64_ADDR64 use as well.) So: 6 is like 5.0.1 for this issue. > vs. >=20 > devel/powerpc64-xtoolchain-gcc: >=20 > Relocation section with addend (.rela.dyn): > r_offset r_info r_type st_value st_name = + r_addend > 0000000145c0 000000000016 R_PPC64_RELATIVE 0000000000000000 + 40d0 > 0000000145e0 000000000016 R_PPC64_RELATIVE 0000000000000000 + = 145b0 > . . . > 000000014408 000600000026 R_PPC64_ADDR64 0000000000000000 sysent = + 0 > 000000014410 001100000026 R_PPC64_ADDR64 0000000000000000 = freebsd32_sysent + 0 Under head -r329542 devel/powerpc64-gcc there is no use of .rela.plt or R_PPC64_JMP_SLOT: Just .rela.dyn and R_PPC64_RELATIVE/R_PPC64_ADDR64 use. (This is using devel/powerpc64-binutils .) > Apparently R_PPC64_JMP_SLOT is mishandled > and does not explicitly lead to rejection > of the attempted dynamic load. >=20 > It might be an issue if .rela.plt and > R_PPC64_JMP_SLOT should even be generated > instead of .rela.dyn and R_PPC64_RELATIVE > and R_PPC64_ADDR64. I have not actually tried the modern builds on a old PowerMac G5 yet: other things took up time. Also the USB devmatch issues are a worry since I have no alternatives to directly connected USB keyboards, mice (and possibly more) if I end up unable to connect over the local network for some reason. But I've not noticed anything go by that indicated adding support for R_PPC64_JMP_SLOT or .rela.plt in filemon.ko or other such .ko's. So I only expect dynamic module loading to work for the devel/powerpc64-gcc based kernel. (I still build-in two(?) extra .ko's to avoid the loading issue for them if I play with the clang based kernel. One of them is filemon.ko .) =3D=3D=3D Mark Millard marklmi at yahoo.com ( markmi at dsl-only.net is going away in 2018-Feb, late) From owner-freebsd-ppc@freebsd.org Mon Feb 19 12:27:19 2018 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B6150F22082 for ; Mon, 19 Feb 2018 12:27:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 502F472639 for ; Mon, 19 Feb 2018 12:27:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 8F37912AEF for ; Mon, 19 Feb 2018 12:27:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w1JCRIbb039946 for ; Mon, 19 Feb 2018 12:27:18 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w1JCRIHd039945 for freebsd-ppc@FreeBSD.org; Mon, 19 Feb 2018 12:27:18 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-ppc@FreeBSD.org Subject: [Bug 225321] dtrace/powerpc64: System crash Date: Mon, 19 Feb 2018 12:27:18 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: breno.leitao@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Feb 2018 12:27:19 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D225321 --- Comment #2 from Breno Leitao --- Hi Justin, We are debugging this one in background, and the problem seems to be a wrong stack pointer (r1). Mainly after restoring it at sys/powerpc/aim/trap_subr64.S: ASENTRY_NOPROF(breakpoint) .... dbtrap: /* Write the trap vector to SPRG3 by computing LR & 0xff00 */ mflr %r1 andi. %r1,%r1,0xff00 mtsprg3 %r1 ld %r1,TRAP_TOCBASE(0) /* get new SP */ ld %r1,TOC_REF(tmpstk)(%r1) addi %r1,%r1,(TMPSTKSZ-48) We have a working patch already, and I would suggest the authors to share i= t. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-ppc@freebsd.org Mon Feb 19 16:45:56 2018 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 03517F0EFFE for ; Mon, 19 Feb 2018 16:45:56 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 965667E920 for ; Mon, 19 Feb 2018 16:45:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id C23F614F45 for ; Mon, 19 Feb 2018 16:45:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w1JGjsi8045844 for ; Mon, 19 Feb 2018 16:45:54 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w1JGjsiI045843 for freebsd-ppc@FreeBSD.org; Mon, 19 Feb 2018 16:45:54 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-ppc@FreeBSD.org Subject: [Bug 225629] powerpc64 (POWER9) segfaults randomly (e.g., building lang/gcc5) Date: Mon, 19 Feb 2018 16:45:54 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: breno.leitao@gmail.com X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Feb 2018 16:45:56 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D225629 --- Comment #13 from Breno Leitao --- Hi Nathan, I do not see this message on my FreeBSD. I am using a very new Linux kernel (4.15) and qemu 2.10. I also found that the machine that is stable (does not reproduce this probl= em) is using a broken kernel, and then I see the Warning message. Just to guarantee that that this is not related, I forced brokenkvm=3D1 on = this machine in order to check if the problem goes away, but it does not. I.e, having a brokenkvm or not does not seem to affect this issue. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-ppc@freebsd.org Mon Feb 19 16:45:55 2018 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 980C0F0EFFB for ; Mon, 19 Feb 2018 16:45:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3FC8C7E91D for ; Mon, 19 Feb 2018 16:45:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id 34C1F1CE50; Mon, 19 Feb 2018 16:45:55 +0000 (UTC) Delivered-To: freebsd-powerpc@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 315CB1CE4F for ; Mon, 19 Feb 2018 16:45:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F11727E91A for ; Mon, 19 Feb 2018 16:45:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 3FB6014F42 for ; Mon, 19 Feb 2018 16:45:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w1JGjsN0045817 for ; Mon, 19 Feb 2018 16:45:54 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w1JGjsRD045816 for freebsd-powerpc@FreeBSD.org; Mon, 19 Feb 2018 16:45:54 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-powerpc@FreeBSD.org Subject: [Bug 225629] powerpc64 (POWER9) segfaults randomly (e.g., building lang/gcc5) Date: Mon, 19 Feb 2018 16:45:54 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: breno.leitao@gmail.com X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Feb 2018 16:45:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D225629 --- Comment #13 from Breno Leitao --- Hi Nathan, I do not see this message on my FreeBSD. I am using a very new Linux kernel (4.15) and qemu 2.10. I also found that the machine that is stable (does not reproduce this probl= em) is using a broken kernel, and then I see the Warning message. Just to guarantee that that this is not related, I forced brokenkvm=3D1 on = this machine in order to check if the problem goes away, but it does not. I.e, having a brokenkvm or not does not seem to affect this issue. --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-ppc@freebsd.org Mon Feb 19 17:25:14 2018 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E5EF7F1289E for ; Mon, 19 Feb 2018 17:25:13 +0000 (UTC) (envelope-from brent.watson@tradeshowattendees.com) Received: from IND01-MA1-obe.outbound.protection.outlook.com (mail-ma1ind01on0122.outbound.protection.outlook.com [104.47.100.122]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (Client CN "mail.protection.outlook.com", Issuer "Microsoft IT TLS CA 4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BBABD80D89 for ; Mon, 19 Feb 2018 17:25:12 +0000 (UTC) (envelope-from brent.watson@tradeshowattendees.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=NETORG3368842.onmicrosoft.com; s=selector1-tradeshowattendees-com; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version; bh=hwFv04Fhr5riyBkJAL56c5llGTwgn/x7E4BWccR5HLU=; b=L0+uJjJP+Iibma/mVQSCpZE5QeWOWHcoHvUXLtXr5OxfmNTzZDHZkENpElpC6a15Khvpw+rWMmxCWRTliw87BJD0o4FuzlwmMw8T567/EeCsZvUahYt53t+zrkKs8n2Te6q67Mv7oiq+gCKaep3Uqjpa3Hpnwj/vad9lFO8cioQ= Authentication-Results: spf=none (sender IP is ) smtp.mailfrom=brent.watson@tradeshowattendees.com; Received: from LenovoPC (49.207.51.204) by PN1PR0101MB1376.INDPRD01.PROD.OUTLOOK.COM (2603:1096:c00:13::9) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P256) id 15.20.506.18; Mon, 19 Feb 2018 17:25:11 +0000 From: "Brent Watson" To: References: In-Reply-To: Subject: Southern California Linux Expo - SCALE Attendee List Date: Mon, 19 Feb 2018 22:55:10 +0530 Message-ID: <045601d3a9a6$98958f40$c9c0adc0$@tradeshowattendees.com> MIME-Version: 1.0 X-Mailer: Microsoft Outlook 14.0 Thread-Index: AdOpo14D59d7YROORQ6M7p+HeHTTXgAAn6gwAAABJrAAAAAToAAAAAQAAAAAAwAAAAAD8AAAAAQgAAAAA2AAAAAEYAAAAAOQAAAABMAAAAAD8AAAAAMgAAAABFAAAAADgAAAAAOAAAAABbAAAAAD4AAAAAQQAAAAA4AAAAAEsAAAAATgAAAABBAAAAADQAAAAASgAAAABOAAAAAEEAAAAANAAAAABKAAAAAE0AAAAAQwAAAABKAAAAAEAAAAAAQwAAAABdAAAAAEMAAAAASQ Content-Language: en-in X-Originating-IP: [49.207.51.204] X-ClientProxiedBy: SG2PR0401CA0007.apcprd04.prod.outlook.com (2603:1096:3:1::17) To PN1PR0101MB1376.INDPRD01.PROD.OUTLOOK.COM (2603:1096:c00:13::9) X-MS-PublicTrafficType: Email X-MS-Office365-Filtering-Correlation-Id: 7dc64a9f-6db5-4c1e-98ec-08d577bdbb0f X-Microsoft-Antispam: UriScan:; BCL:0; PCL:0; RULEID:(7020095)(4652020)(7021125)(5600026)(4604075)(4534165)(7022125)(4603075)(7168020)(4627221)(201702281549075)(7048125)(7024125)(7027125)(7028125)(7023125)(2017052603307)(7153060)(7193020); SRVR:PN1PR0101MB1376; X-Microsoft-Exchange-Diagnostics: 1; PN1PR0101MB1376; 3:xFY0+WUF/ODsXzokIOe/IOXHufh+kDjvQhP8oDLOINultNuy9AN5gb+S1MvgPlkHYnkYpfsMslzsVvVVhdO0fWQNYrOFHnQH08PJmHW88I2K71FjArLizZRFK/beJQqanM49BxE5rbQRYI+GLmN6jJa2+lvHgGgO5wzWgQUaZAhfmjio+FKxwHc1nyhNsGo6doCIlBd9vtRiapmicDaeaskVzvV93EL39dpejId2ZAaME/wxa437pXarxxoH6bm0; 25:m9XlPwl+Wd0h+FUEVoGlrQjeHZ3IJlyTGaa5HJ5YCPFnIWd0L3dtdZXi9gChwuXzD16HwudT6BTqahWyj+pqQR91b7vBpkR2KxIxWzW8pzrqp+3qzvDPWmVkHkm2A7lGafJCja6aj52KL9N9/6RtqfsJewGGG7KfUF6ytfPpSV8C41G6PN8QdusdgUmVSly7xHIAKgY1kHTNPxqViEu4mTrr2NPli9+NiBHKxPbtEg7CWTydr+QFm8CubFkrJprysDyUnkldYk+X4mIbmCNV+7f1ouUjwUJz+3YBq8zHAMiUr9U1Gt5SfjA8pnt7BFu6acLXtoP8EBsMd+q24CmQpA==; 31:ICv0i9++//8gAnMEPMJfco/8tmbWodfVPgT5bheBgjxe05j0i68PBlquGMKl4pj0QQsToN8409sNIm37+GKf8iNzMjzQyTF+mb3HpgFOCmQOjmzR+VpRdbwn/P+pB2sUujY9c8FlEWCeLC5ZwZ6o8hJ3IvI8afbYW/VAl9157X9OyLR4Uklgo0YHX8gYLdRzU8uEXdPcOyphnQXq1JE21ASM1cVxp/haHDs9rXG1AeQ= X-MS-TrafficTypeDiagnostic: PN1PR0101MB1376: X-Microsoft-Antispam-PRVS: X-Exchange-Antispam-Report-Test: UriScan:(28532068793085)(116415991822766)(21748063052155)(266576461109395); X-Exchange-Antispam-Report-CFA-Test: BCL:0; PCL:0; RULEID:(6040501)(2401047)(8121501046)(5005006)(3002001)(93006095)(93001095)(3231101)(944501161)(10201501046)(6041288)(20161123560045)(20161123564045)(20161123562045)(20161123558120)(2016111802025)(6043046)(6072148)(201708071742011); SRVR:PN1PR0101MB1376; BCL:0; PCL:0; RULEID:; SRVR:PN1PR0101MB1376; X-Microsoft-Exchange-Diagnostics: 1; PN1PR0101MB1376; 4:Youtm0w+PqoyMfBPa56O3NUIiNW/UKn7isM0oDKptjkjDOSKBhm2IRlD3/YB/j2IuJhZNUaPOySTe6yS67JzTyfHtMHGjuDsSK6ya5RJmVujNGd0ON21K8rLK5JekOMtvw7LWHKNqQgi3kAprGQZSoPXtb3krkX8c5bPR0YaffM/b5OYMXvWyzXzhsj0jFXPGV2m78z/hqSlRr2MP/5bC1Z3rcocRUOPlKpPwpLFkIBUdsqPGN40TFiL1QvGLkZkVbKJYSzKx1KyE7O1P+feNzeXRVbSh6zpWlfVmSVZrloC7krQ0CmP0UI52Boq74iFZGDu1FmfEaLcGDd5TwmvixodWn51yq+VDrx8ViaR/SM4/gLUsJ6VvWIdzXyR+AnIdE0lMJdyll1552LFIJ68kqdHPrKjqM47bCR99Q+J1vw= X-Forefront-PRVS: 0588B2BD96 X-Forefront-Antispam-Report: SFV:NSPM; SFS:(10019020)(346002)(396003)(366004)(39380400002)(39840400004)(376002)(84964002)(51414003)(189003)(199004)(50834003)(106356001)(6916009)(2351001)(5009440100003)(72586001)(71636004)(61296003)(66066001)(68736007)(260700001)(46816001)(270700001)(55236004)(54896002)(6306002)(6486002)(16586007)(44736005)(53936002)(1420700001)(84116003)(2906002)(386003)(81156014)(25786009)(81166006)(7736002)(45080400002)(76176011)(7826002)(8676002)(97736004)(316002)(478600001)(6116002)(3846002)(790700001)(105586002)(84326002)(186003)(86362001)(52116002)(16526019)(26005)(8936002)(5660300001)(102836004)(6496006)(75216001)(50226002)(36756003); DIR:OUT; SFP:1102; SCL:1; SRVR:PN1PR0101MB1376; H:LenovoPC; FPR:; SPF:None; PTR:InfoNoRecords; MX:1; A:0; LANG:en; Received-SPF: None (protection.outlook.com: tradeshowattendees.com does not designate permitted sender hosts) X-Microsoft-Exchange-Diagnostics: =?us-ascii?Q?1; PN1PR0101MB1376; 23:HfDHpOQ0gKzxTdGPO8BFcs9DSG2oqeqe4OAPlr9?= =?us-ascii?Q?NHObgvSTtAiDotOdh1VcYXuYPuVbD6dGJsA2T15vL115SJ/fEV9EohbKzhab?= =?us-ascii?Q?6k1jtBEK7+gYyXC/ZsB3jZWvFaGh440wD+BemZhlR3O/06QWnnT1DrJJuYpf?= =?us-ascii?Q?f2M1EeaRY39lbCpb8uxMxuL1ydbgF7i/5C61wFpNJVsf54w7ZF+I24wTqpm8?= =?us-ascii?Q?jLafjnd9IDr1zplsPcgGCVi+mdgqkYr4g/GL0muvXR7BVnQlZCS36FQwxjX8?= =?us-ascii?Q?+vlXaHQIMP2o0JMKMPAvmdmRHMy5V33u0xN6voHRABfB0krFv7gyY+x1YWfQ?= =?us-ascii?Q?HVlh88vXnLcIFJ2DqUJUbqCuJzlMRlhqq0IKkr/DWxUaz5tlJWBjJn2kk7ji?= =?us-ascii?Q?+kBUWs2gAJB9s3bYbWvLbn6wu3qnw4Z+dLcnHhLWsAmgBtxCpR0zMVL5ZUsR?= =?us-ascii?Q?TmiJTDowgPnDzKA8OqqALjSZoKhC9F6r33GIjrru3p+2xIE3MohqsajSu7jb?= =?us-ascii?Q?9alqRwZxdmN/y4zZuhUsMkAsGq+h0wWlCWCY8zAyA/g0FuecjIt0LBhMnwt6?= =?us-ascii?Q?Sf3FijwQ359pofX+T0XBQ+w2+ayWujDb/bcOWSPJetHVSq41sfhQHmi1rRFF?= =?us-ascii?Q?pPFbxuY5NrnQD4dWrdyOew6QUOXCHxfP6gR4bAduARzxOinMSdXXjPqylCex?= =?us-ascii?Q?YmvDc/G3BuT0tHUObUjqwO6ux+S6WYO4e8BiO24yGaWVK232UF6RCwlQC19l?= =?us-ascii?Q?uGlZYW5WYqFmIuJx7NupPcwZTlDsFRUxUSaZB15VoGuBFUTtAjSo1uQz2bh3?= =?us-ascii?Q?gPy9fTol8woRham6Tn7cFCvJazEd89UehoyNHq2x0aLtGO9MItIE2q0iyVZK?= =?us-ascii?Q?dF73PqEitKcwQ2yB433+BjAfeNGaJI5/YN1HAmjy+WP0UbJ8jw21VRqfWCCe?= =?us-ascii?Q?itahAxWqlEFclhPGhx7e9KDntKsxt8ZItegRqLjvUQM4GkQvsaRR7vDYWzYI?= =?us-ascii?Q?X7jmXZWKVcUuqU1CWIfUC/4jDSwFFPkaZWfy62oxyeGlk8sa+6mf91Fk9GC0?= =?us-ascii?Q?d6MsonsPlAT6SxAARRx3NG3nEK9OKo2CWYYbGztDWNH7j7wBSdh5AIN8sIvy?= =?us-ascii?Q?pW9ztluZZ3xceRAEwiMNEznYi6iduALRTe3vF/gdnDRZGo151J76C2+J2pzc?= =?us-ascii?Q?/DO6bDopO7Q/gnc6BwOl0rN3GuKArJ2h63Vg44XEBwGH7k09VgImWZ8I1ZLk?= =?us-ascii?Q?SzN1i840l8AVrgxBxMmE42LWwS3uZC6x4D2c7KD1Y2z19DHMHB5wVb8+wvqY?= =?us-ascii?Q?/RmXPUFlVOPr1yc+e6mjh/u8bYRRJmECJtbdz8nDho6sLtnQnhMXwpxgTrKY?= =?us-ascii?Q?r20G0N5vyk2jZC7V4DURY64jliNovqrbOWUjFg53hswCBDDzq9qkwHGj+Jdq?= =?us-ascii?Q?jd2X7Dfz6aQ=3D=3D?= X-Microsoft-Exchange-Diagnostics: 1; PN1PR0101MB1376; 6:ivIa59prTkatsvOmCbIJDPLyGbQOuvQn0rKQGbnWecjbPF7vc8gsD0j2P3sU85r70FNO7UFgSIFpipbNUA9+t1fyIQoImlejXiEzG0AyVEtDSAyUMcPIjNWm0QRwMXAPA6uz4RlOZch4fY9DFVxRhDwjEGm4fLL1qNHxyRVpUpBhOup3mlB6fekvEv0lAnYX703HkPamHiUIyo+f/Bg4204SjKMrp96TfXZ14+dHjWEY3Y1KwTV5KwF0wmUytCfDYZlnqtzx+mi2kCbbbFFw2IPueimBT1iWLeJypjdDBKsF1JbnW/AT6krBLg2urJnRDwEwGvzT7BUkVQjc/BPArLipJRKD2ZZ0glgbJPjMcPQ=; 5:/OMwyBTYDCp8kmjnpGrs6XwDn2WlgDjHTK6nGvCEBLfvqjYMU0/Kv1TwwD+CnBf9pl/x3ixaSIbX+K5ENsDDwyZ8WNYaDYwxNEbmeJeTvUr5uheC5oI3cVQrH7xNDag1woMqXn/63zDyhyi7+S3MDOMIKev4cqR4Lvlvm2VmOKE=; 24:gTOUhC21QvOFbrX3mVlYOs0mrB62+Z6unWiakMo35Mcd0NWa2mRF+QCcM8rIRSu2NFnquYzg/BHmSn+kdk58CiogPCQGm7xrpvr3IjVxQEI=; 7:Zd6XIvF28zg1Ha8JTbXJeViNQrKgfi8K/vFtzQ90BZk3GmBEfTu5pQdedjD7KdlCitS6iE7gno7Fd+IJN8bmxyC0OlnKUEmGPmrfO24UCyd4rsRjrKseyxhDtHXmhbOXe+swYVyyaJRUsMOd33hblmpO2bAZrcb/LL0VUgTTNg7dqR5fJz1raT4+FR/C0A8Fir8B3E6htPe1zpRBFS8+d7KvlZuYoqqpwJo0CFqIgMPm09uUOg3wTDoEnuwdKmrv SpamDiagnosticOutput: 1:99 SpamDiagnosticMetadata: NSPM X-OriginatorOrg: tradeshowattendees.com X-MS-Exchange-CrossTenant-OriginalArrivalTime: 19 Feb 2018 17:25:11.0241 (UTC) X-MS-Exchange-CrossTenant-Network-Message-Id: 7dc64a9f-6db5-4c1e-98ec-08d577bdbb0f X-MS-Exchange-CrossTenant-FromEntityHeader: Hosted X-MS-Exchange-CrossTenant-Id: 32919276-7333-4de0-8858-fec8b55a3430 X-MS-Exchange-Transport-CrossTenantHeadersStamped: PN1PR0101MB1376 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.25 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Feb 2018 17:25:14 -0000 Greetings, Would you be interested in Southern California Linux Expo - SCALE ? We can provide you with 3,600 attendee contacts with their complete details (First Name, Middle Name, Last Name, Company, Web site/URL, Contact number, Fax number, Email Id, Industry, Employee size, Revenue size, Country, state, Zip Code and LinkedIn URL.) Please keep me posted if you are interested and I shall get back to you with Pricing and more details. I Look forward to hearing from you. Warm regards, Brent Watson Demand Generation Executive If you don't wish to receive our newsletters, reply back with "unsubscribe " in subject line From owner-freebsd-ppc@freebsd.org Tue Feb 20 00:21:33 2018 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BF2CEF0D946 for ; Tue, 20 Feb 2018 00:21:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6941575293 for ; Tue, 20 Feb 2018 00:21:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id 61B36665C; Tue, 20 Feb 2018 00:21:33 +0000 (UTC) Delivered-To: freebsd-powerpc@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [96.47.72.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 5CE5D665B for ; Tue, 20 Feb 2018 00:21:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3171975291 for ; Tue, 20 Feb 2018 00:21:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 855C718F49 for ; Tue, 20 Feb 2018 00:21:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w1K0LWH2031019 for ; Tue, 20 Feb 2018 00:21:32 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w1K0LWgS031011 for freebsd-powerpc@FreeBSD.org; Tue, 20 Feb 2018 00:21:32 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-powerpc@FreeBSD.org Subject: [Bug 225662] devel/protobuf-c: fix build on tier-2 architectures Date: Tue, 20 Feb 2018 00:21:32 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: truckman@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: truckman@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: resolution bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Feb 2018 00:21:33 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D225662 Don Lewis changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|New |Closed --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-ppc@freebsd.org Tue Feb 20 06:19:42 2018 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 76F41F069DC for ; Tue, 20 Feb 2018 06:19:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 11C3E84FF8 for ; Tue, 20 Feb 2018 06:19:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 5487F1C063 for ; Tue, 20 Feb 2018 06:19:41 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w1K6JfuK018721 for ; Tue, 20 Feb 2018 06:19:41 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w1K6JfFJ018714 for freebsd-ppc@FreeBSD.org; Tue, 20 Feb 2018 06:19:41 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-ppc@FreeBSD.org Subject: [Bug 201606] print/texlive-base: Fails to configure on PPC (Sorry, can not preprocess ) Date: Tue, 20 Feb 2018 06:19:40 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: needs-qa X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: w.schwarzenfeld@utanet.at X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: hrs@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Feb 2018 06:19:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D201606 w.schwarzenfeld@utanet.at changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |w.schwarzenfeld@utanet.at --- Comment #2 from w.schwarzenfeld@utanet.at --- Is this still relevant? --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-ppc@freebsd.org Tue Feb 20 14:14:25 2018 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 715ADF054A7 for ; Tue, 20 Feb 2018 14:14:25 +0000 (UTC) (envelope-from rhonda.stewart@rearson.com) Received: from mail-qt0-x246.google.com (mail-qt0-x246.google.com [IPv6:2607:f8b0:400d:c0d::246]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 17D527903B for ; Tue, 20 Feb 2018 14:14:24 +0000 (UTC) (envelope-from rhonda.stewart@rearson.com) Received: by mail-qt0-x246.google.com with SMTP id q7so1101354qtl.0 for ; Tue, 20 Feb 2018 06:14:24 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rearson.com; s=google; h=mime-version:message-id:date:subject:from:to; bh=HB6phNFATLpQ9PK2G4WiOlPU6T8OBTcL/Zdlegz7OHY=; b=ciuEEuZdKIUcAxaS//MvYWcJzJfBFTt3f0eKv7CvzMnBbgZ5LpbL1ThA5AKXnuK53l gKbtvx6N+HPaRA15p7yIgHxc7aQ786aszLfPJggiXoCNmGAbsdbCwN3o98eSIXQZmqHL cjodhamcVV/Ue7gk/HWWrCd+A8Rj1tZSab5sU= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:message-id:date:subject:from:to; bh=HB6phNFATLpQ9PK2G4WiOlPU6T8OBTcL/Zdlegz7OHY=; b=tjSt9ZZHLaQG2j8gr5+kymJenLb61ye96ILpocVi9cbnRQz4yONR4juRuvBHH+S7zJ UShIiccz/hWH0IrS0UyYorFTjR7U0TuaHn3cK1B4DdYxKA66EsQPzbVCQt2a2OwBL0+E vo9pmldmLVhzr/cDO2m9lCyM3O+EQfvM7r6GlpiYqZrE9Dkrs20LCbc0sUqW5ME7Jx/p q+axxXXczAgwSXaZx39ZVvkPhlcJIRKYFlpm5IPZSsuUn52AG56S2hdi0hyiDWsbfPol tYEaG3AYhn6XSSdBJXAQI3GevUPf7Bv0LVUqqSckc5sW8NI7CMFs5rcHWbMPV/2cyr52 AE5w== X-Gm-Message-State: APf1xPDFsW2uvAtfaldt9uoZ+8iP69cWioQ2ALyTEyPw5VLx/h6Qqpem gI4sE4kjvXAAtvcxEB+k58oa7/d+Dvli X-Google-Smtp-Source: AH8x226IXtIBb+3VFZksZsH84Um4ZQlt9CrhQPTZ5pGam+PU/aBnjrSOu3YjiedvdiM2XKM2DOTyfoPLrA== MIME-Version: 1.0 X-Received: by 10.55.225.5 with SMTP id c5mr10279659qkm.5.1519136064577; Tue, 20 Feb 2018 06:14:24 -0800 (PST) Message-ID: Date: Tue, 20 Feb 2018 14:14:24 +0000 Subject: Google AdWords Users List From: rhonda.stewart@rearson.com To: freebsd-ppc@freebsd.org Content-Type: text/plain; charset="UTF-8"; format=flowed; delsp=yes Content-Transfer-Encoding: base64 X-Content-Filtered-By: Mailman/MimeDel 2.1.25 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Feb 2018 14:14:25 -0000 PGRpdiBkaXI9Imx0ciI+PHAgY2xhc3M9ImdtYWlsLW1zb25vc3BhY2luZyI+PHNwYW4gIA0Kc3R5 bGU9ImZvbnQtc2l6ZToxMXB0O2ZvbnQtZmFtaWx5OkNhbGlicmksc2Fucy1zZXJpZjtjb2xvcjpy Z2IoMzEsNzgsMTIxKSI+SGVsbG8gIA0KdGhlcmUswqA8YnI+DQo8YnI+DQpJIHdvdWxkIGxpa2Ug dG8ga25vdyBpZiB5b3UgYXJlIGludGVyZXN0ZWQgaW4gYWNxdWlyaW5nwqA8Yj5Hb29nbGUgQWRX b3JkcyAgDQpVc2Vyc8KgTGlzdDwvYj4/wqA8L3NwYW4+PHNwYW4gIA0Kc3R5bGU9ImZvbnQtc2l6 ZToxMXB0O2ZvbnQtZmFtaWx5OkNhbGlicmksc2Fucy1zZXJpZiI+PHNwYW4+PC9zcGFuPjwvc3Bh bj48L3A+DQoNCjxwIGNsYXNzPSJnbWFpbC1tc29ub3NwYWNpbmciPjxiPjxzcGFuICANCnN0eWxl PSJmb250LXNpemU6MTFwdDtmb250LWZhbWlseTpDYWxpYnJpLHNhbnMtc2VyaWY7Y29sb3I6cmdi KDMxLDc4LDEyMSkiPkxpc3QgIA0KQ29udGFpbnM6PC9zcGFuPjwvYj48c3BhbiAgDQpzdHlsZT0i Zm9udC1zaXplOjExcHQ7Zm9udC1mYW1pbHk6Q2FsaWJyaSxzYW5zLXNlcmlmO2NvbG9yOnJnYigz MSw3OCwxMjEpIj7CoE5hbWUsDQpDb21wYW55JiMzOTtzIE5hbWUsIFBob25lIE51bWJlciwgRmF4 IE51bWJlciwgSm9iIFRpdGxlLCBFbWFpbCBhZGRyZXNzLCAgDQpDb21wbGV0ZQ0KTWFpbGluZyBB ZGRyZXNzLCBTSUMgY29kZSwgQ29tcGFueSByZXZlbnVlLCBzaXplLCBXZWIgYWRkcmVzcyBldGMu IEFsbA0KVGVjaG5vbG9neSAvIENvbXBhbmllcyBQYXJ0bmVycyBhbmQgVXNlcnMgTGlzdCwgSVQg ZGVjaXNpb24gTWFrZXJzIGZyb20gIA0KRm9ydHVuZQ0KNTAwIENvbXBhbmllcywgSVQgRGVjaXNp b24gTWFrZXJzIGZyb20gU01FIGFzIHdlbGwuPGJyPg0KPGJyPg0KTGV0IG1lIGtub3cgaWYgeW91 IGFyZSBpbnRlcmVzdGVkIGFuZCBJIHdpbGwgZ2V0IGJhY2sgdG8geW91IHdpdGggdGhlIGNvdW50 cw0KYW5kIHByaWNpbmcuPGJyPg0KPGJyPg0KUmVnYXJkcyzCoDxicj4NClJob25kYSBTdGV3YXJ0 PGJyPg0KTWFya2V0aW5nIEV4ZWN1dGl2ZcKgPC9zcGFuPjxzcGFuICANCnN0eWxlPSJmb250LXNp emU6MTFwdDtmb250LWZhbWlseTpDYWxpYnJpLHNhbnMtc2VyaWYiPjxzcGFuPjwvc3Bhbj48L3Nw YW4+PC9wPg0KDQo8cCBjbGFzcz0iZ21haWwtbXNvbm9zcGFjaW5nIj48c3BhbiAgDQpzdHlsZT0i Zm9udC1zaXplOjExcHQ7Zm9udC1mYW1pbHk6Q2FsaWJyaSxzYW5zLXNlcmlmO2NvbG9yOnJnYigz MSw3OCwxMjEpIj50byAgDQpvcHQgb3V0LCBwbGVhc2UgcmVwbHkgd2l0aCBMZWF2ZSBPdXQgaW4g dGhlDQpTdWJqZWN0IExpbmUuPC9zcGFuPjxzcGFuICANCnN0eWxlPSJmb250LXNpemU6MTFwdDtm b250LWZhbWlseTpDYWxpYnJpLHNhbnMtc2VyaWYiPjxzcGFuPjwvc3Bhbj48L3NwYW4+PC9wPjwv ZGl2Pg0KPHA+Jm5ic3A7PC9wPjxhIHN0eWxlPSdkaXNwbGF5OiBibG9jazsgbWFyZ2luOiAzMnB4 IDAgNDBweCAwOyBwYWRkaW5nOiAgDQoxMHB4OyBmb250LXNpemU6IDFlbTsgdGV4dC1hbGlnbjog Y2VudGVyOyBib3JkZXI6IDA7IGJvcmRlci10b3A6IDFweCBzb2xpZCAgDQpncmF5OyAnIGhyZWY9 J2h0dHBzOi8vZ29vLmdsLzJrc2RSdic+cG93ZXJlZCBieSBHU00uIEZyZWUgbWFpbCBtZXJnZSBh bmQgIA0KZW1haWwgbWFya2V0aW5nIHNvZnR3YXJlIGZvciBHbWFpbC48L2E+DQo= From owner-freebsd-ppc@freebsd.org Wed Feb 21 00:28:26 2018 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7A46DF15A69 for ; Wed, 21 Feb 2018 00:28:26 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 139C379CB4 for ; Wed, 21 Feb 2018 00:28:26 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 4C4852596D for ; Wed, 21 Feb 2018 00:28:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w1L0SPrp057781 for ; Wed, 21 Feb 2018 00:28:25 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w1L0SPsU057780 for freebsd-ppc@FreeBSD.org; Wed, 21 Feb 2018 00:28:25 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-ppc@FreeBSD.org Subject: [Bug 225321] dtrace/powerpc64: System crash Date: Wed, 21 Feb 2018 00:28:25 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: breno.leitao@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Feb 2018 00:28:26 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D225321 --- Comment #3 from Breno Leitao --- I did some further debugs, and this is what I found now: 1) The very first problem is that we are not able to leave kdb, if we just = get in into kdb, and 'c' continue, we get: db> c=20=20=20 fatal kernel trap: exception =3D 0x400 (instruction storage interrupt) virtual address =3D 0x426f6f7420666c60 srr0 =3D 0x426f6f7420666c60 (0x426f6f7420666c60) srr1 =3D 0x8000000040001032 lr =3D 0x426f6f7420666c61 (0x426f6f7420666c61) curthread =3D 0x1441460 pid =3D 0, comm =3D=20 We are going to an address that means "boot fla", which is clearly wrong. Debugging the code, I found exactly what is happening. On dbtrap->dbleave, we call FRAME_LEAVE(), which does leaves SRR0 =3D 0x661= 6r8 and SRR1 =3D 0x8000000000001032 and then call rfid. SRR0 and SRR1 are sane. SRR0 is part of the kdb_enter function, as showed: 0x0000000000661658 in kdb_enter (why=3D0xf68968 "bootflags", msg=3D0x80 "") The kdb_enter() function follows: void kdb_enter(const char *why, const char *msg) { if (kdb_dbbe !=3D NULL && kdb_active =3D=3D 0) { if (msg !=3D NULL) printf("KDB: enter: %s\n", msg); kdb_why =3D why; breakpoint(); kdb_why =3D KDB_WHY_UNSET; } } After the rfid we get into 0xf68968 that executes: 0x0000000000661668 <+112>: ld r0,16(r1) 0x000000000066166c <+116>: mtlr r0 ... 0x000000000066167c <+132>: blr In this case, lr has 0x426f6f7420666c61, which is clearly wrong and causes = the trap. It appears that r1 does not point to the proper stack, since it contains: r1 =3D 0xf68958 0xf68958: 0x6b65726e 0x656c6e61 0x6d650000 0x00000000 0xf68968: 0x626f6f74 0x666c6167 0x73000000 0x00000000 0xf68978: 0x426f6f74 0x20666c61 Anyway, clearly the kdb_enter() has a wrong stack pointer (r1) after calling breakpoint. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-ppc@freebsd.org Wed Feb 21 15:56:32 2018 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AD83BF0FE35 for ; Wed, 21 Feb 2018 15:56:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 09C7682EC4 for ; Wed, 21 Feb 2018 15:56:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 428696084 for ; Wed, 21 Feb 2018 15:56:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w1LFuVXj031574 for ; Wed, 21 Feb 2018 15:56:31 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w1LFuVaI031573 for freebsd-ppc@FreeBSD.org; Wed, 21 Feb 2018 15:56:31 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-ppc@FreeBSD.org Subject: [Bug 225321] dtrace/powerpc64: System crash Date: Wed, 21 Feb 2018 15:56:31 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: breno.leitao@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Feb 2018 15:56:32 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D225321 --- Comment #4 from Breno Leitao --- Hi, I created a patch that I think it makes sense. I think that the problem we are not using the temporary stack properly, sin= ce it is defined on the bottom of the stack, as showed: #define TMPSTKSZ 16384 /* 16K temporary stack */ GLOBAL(tmpstk) .space TMPSTKSZ TOC_ENTRY(tmpstk) So, the tmpstk is pointing to the bottom of the stack (higher address) in t= he TOC. Later, in the dbtrap: section, we get tmpstk and increase TMPSTKSZ, which is going to get in a different area. If the above is correct, we have two solutions: 1) Move the TOC_ENTRY to the TOP of the stack, something as (not validated): #define TMPSTKSZ 16384 /* 16K temporary stack */ GLOBAL(tmpstk) TOC_ENTRY(tmpstk) .space TMPSTKSZ 2) Does not increment the tmpstk pointer, since we are on the bottom of the stack already: index 7ef41d90ffe..2307ec4307c 100644 --- a/sys/powerpc/aim/trap_subr64.S +++ b/sys/powerpc/aim/trap_subr64.S @@ -805,9 +805,9 @@ dbtrap: andi. %r1,%r1,0xff00 mtsprg3 %r1 ld %r1,TRAP_TOCBASE(0) /* get new SP */ ld %r1,TOC_REF(tmpstk)(%r1) - addi %r1,%r1,(TMPSTKSZ-48) + addi %r1,%r1,-48 Does it make any sense? --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-ppc@freebsd.org Wed Feb 21 19:41:12 2018 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CCAB5F23A81 for ; Wed, 21 Feb 2018 19:41:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6C8836E4DE for ; Wed, 21 Feb 2018 19:41:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id B87DA10051 for ; Wed, 21 Feb 2018 19:41:10 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w1LJfANK077041 for ; Wed, 21 Feb 2018 19:41:10 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w1LJfA3n077040 for freebsd-ppc@FreeBSD.org; Wed, 21 Feb 2018 19:41:10 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-ppc@FreeBSD.org Subject: [Bug 225321] dtrace/powerpc64: System crash Date: Wed, 21 Feb 2018 19:41:10 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: breno.leitao@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Feb 2018 19:41:12 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D225321 --- Comment #5 from Breno Leitao --- Looking further, it and the stack is properly set, i.e, the tmpstk is set at the correct place, and the patch above, although not crashing, is far to be correct. This is my new discovery: 1) The tmpstk is being used by powerpc_init(). 2) Powerpc_init calls kdb_enter(), which calls breakpoint(). 3) Breakpoint goes to "dbtrap" label, which reset the stack to tmpstk, overwriting it since the beginning. 4) when dbtrap/breakpoint exits, the stack is a mess, causing this problem. To prove that, I created a stack just for the trap, and this seems to fix t= he problem. diff --git a/sys/powerpc/aim/locore64.S b/sys/powerpc/aim/locore64.S index f283ba6489b..3dd1ca4092d 100644 --- a/sys/powerpc/aim/locore64.S +++ b/sys/powerpc/aim/locore64.S @@ -58,9 +58,13 @@ GLOBAL(__endkernel) #define TMPSTKSZ 16384 /* 16K temporary stack */ GLOBAL(tmpstk) .space TMPSTKSZ - TOC_ENTRY(tmpstk) +#define TRAPSTKSZ 4096 +GLOBAL(trapstk) + .space TRAPSTKSZ +TOC_ENTRY(trapstk) + /* * Entry point for bootloaders that do not fully implement ELF and start * at the beginning of the image (kexec, notably). In its own section so diff --git a/sys/powerpc/aim/trap_subr64.S b/sys/powerpc/aim/trap_subr64.S index 7ef41d90ffe..ffae46fa3f6 100644 --- a/sys/powerpc/aim/trap_subr64.S +++ b/sys/powerpc/aim/trap_subr64.S @@ -805,9 +805,9 @@ dbtrap: andi. %r1,%r1,0xff00 mtsprg3 %r1 - ld %r1,TRAP_TOCBASE(0) /* get new SP */ - ld %r1,TOC_REF(tmpstk)(%r1) - addi %r1,%r1,(TMPSTKSZ-48) + GET_TOCBASE(%r1) + ld %r1,TOC_REF(trapstk)(%r1) + addi %r1,%r1,(TRAPSTKSZ-48) FRAME_SETUP(PC_DBSAVE) /* Call C trap code: */ --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-ppc@freebsd.org Wed Feb 21 21:57:49 2018 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 52D7EF044DA for ; Wed, 21 Feb 2018 21:57:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E6F6A75627 for ; Wed, 21 Feb 2018 21:57:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 3D0C911303 for ; Wed, 21 Feb 2018 21:57:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w1LLvmS1058949 for ; Wed, 21 Feb 2018 21:57:48 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w1LLvmjK058948 for freebsd-ppc@FreeBSD.org; Wed, 21 Feb 2018 21:57:48 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-ppc@FreeBSD.org Subject: [Bug 225321] dtrace/powerpc64: System crash Date: Wed, 21 Feb 2018 21:57:47 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: breno.leitao@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Feb 2018 21:57:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D225321 --- Comment #6 from Breno Leitao --- Created attachment 190876 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D190876&action= =3Dedit Create a trapstack to avoid tmpstack corruption This is not tested on powerpc32 bits platform yet. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-ppc@freebsd.org Thu Feb 22 19:41:36 2018 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 66D6EF24D59 for ; Thu, 22 Feb 2018 19:41:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0FE0A74BD1 for ; Thu, 22 Feb 2018 19:41:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id 081D018EB1; Thu, 22 Feb 2018 19:41:36 +0000 (UTC) Delivered-To: freebsd-powerpc@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id EE88A18EB0 for ; Thu, 22 Feb 2018 19:41:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A686F74BCA for ; Thu, 22 Feb 2018 19:41:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id E23811C924 for ; Thu, 22 Feb 2018 19:41:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w1MJfYKt002050 for ; Thu, 22 Feb 2018 19:41:34 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w1MJfYc5002049 for freebsd-powerpc@FreeBSD.org; Thu, 22 Feb 2018 19:41:34 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-powerpc@FreeBSD.org Subject: [Bug 226123] devel/cmake: linking ../bin/ccmake fails with undefined reference to Json::Value::Value() Date: Thu, 22 Feb 2018 19:41:34 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bug@humdi.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: kde@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc flagtypes.name attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Feb 2018 19:41:36 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D226123 Bug ID: 226123 Summary: devel/cmake: linking ../bin/ccmake fails with undefined reference to Json::Value::Value() Product: Ports & Packages Version: Latest Hardware: powerpc OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: kde@FreeBSD.org Reporter: bug@humdi.net CC: freebsd-powerpc@FreeBSD.org Assignee: kde@FreeBSD.org Flags: maintainer-feedback?(kde@FreeBSD.org) CC: freebsd-powerpc@FreeBSD.org Created attachment 190899 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D190899&action= =3Dedit cmake buildlog Clean build of devel/cmake on powerpc (mac mini g4) fails during linking of ./bin/ccmake with: [ 79%] Linking CXX executable ../bin/ccmake libCMakeLib.a(cmNinjaTargetGenerator.cxx.o): In function `cmNinjaTargetGenerator::WriteTargetDependInfo(std::__cxx11::basic_string, std::allocator > const&)': cmNinjaTargetGenerator.cxx:(.text+0x8ec0): undefined reference to `Json::Value::Value(std::__cxx11::basic_string, std::all ocator > const&)' cmNinjaTargetGenerator.cxx:(.text+0x9050): undefined reference to `Json::Value::Value(std::__cxx11::basic_string, std::all ocator > const&)' cmNinjaTargetGenerator.cxx:(.text+0x9228): undefined reference to `Json::Value::Value(std::__cxx11::basic_string, std::all ocator > const&)' cmNinjaTargetGenerator.cxx:(.text+0x92b8): undefined reference to `Json::Value::Value(std::__cxx11::basic_string, std::all ocator > const&)' etc. Full build log included as attachment. Rebuild of devel/jsoncpp has been tr= ied but that didn't change the end result. The error has some similarities with https://forums.freebsd.org/threads/mysql55-server-5-5-53-port-fails-to-upgr= ade-to-version-5-5-54.59912/ but suggested solution didn't apply. --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-ppc@freebsd.org Fri Feb 23 09:40:43 2018 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A0D48F0E9D6 for ; Fri, 23 Feb 2018 09:40:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48FFA75BF4 for ; Fri, 23 Feb 2018 09:40:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id 411D5638C; Fri, 23 Feb 2018 09:40:43 +0000 (UTC) Delivered-To: freebsd-powerpc@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 3C141638B for ; Fri, 23 Feb 2018 09:40:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id ED62675BF1 for ; Fri, 23 Feb 2018 09:40:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 55BA623D6B for ; Fri, 23 Feb 2018 09:40:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w1N9eg8Z029838 for ; Fri, 23 Feb 2018 09:40:42 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w1N9egpu029837 for freebsd-powerpc@FreeBSD.org; Fri, 23 Feb 2018 09:40:42 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-powerpc@FreeBSD.org Subject: [Bug 226123] devel/cmake: linking ../bin/ccmake fails with undefined reference to Json::Value::Value() Date: Fri, 23 Feb 2018 09:40:42 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: adridg@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: kde@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Feb 2018 09:40:43 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D226123 Adriaan de Groot changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |adridg@freebsd.org --- Comment #1 from Adriaan de Groot --- Have you got a sufficiently new devel/jsoncpp? This most recent commit: r462353 | yuri | 2018-02-19 23:25:14 +0100 (Mon, 19 Feb 2018) | 10 lines Added C++11 to the compile flags, which is needed for CMake. I know you've already rebuilt jsoncpp, but it really needs to be very-very recent. Otherw= ise all I can suggest is looking at what is getting compiled into libjsoncpp wi= th ` nm -DC /usr/local/lib/libjsoncpp.so | grep ::Value::Value ` .. there may be some trickery afoot. --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-ppc@freebsd.org Fri Feb 23 19:16:34 2018 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D07A2F13E6D for ; Fri, 23 Feb 2018 19:16:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 739A571502 for ; Fri, 23 Feb 2018 19:16:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id 6D18D1345A; Fri, 23 Feb 2018 19:16:33 +0000 (UTC) Delivered-To: freebsd-powerpc@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 6A94813459 for ; Fri, 23 Feb 2018 19:16:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3DADC71500 for ; Fri, 23 Feb 2018 19:16:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 7C636E6C for ; Fri, 23 Feb 2018 19:16:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w1NJGW5H005260 for ; Fri, 23 Feb 2018 19:16:32 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w1NJGWYw005259 for freebsd-powerpc@FreeBSD.org; Fri, 23 Feb 2018 19:16:32 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-powerpc@FreeBSD.org Subject: [Bug 226123] devel/cmake: linking ../bin/ccmake fails with undefined reference to Json::Value::Value() Date: Fri, 23 Feb 2018 19:16:32 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bug@humdi.net X-Bugzilla-Status: Closed X-Bugzilla-Resolution: DUPLICATE X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: kde@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: resolution bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Feb 2018 19:16:34 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D226123 Teemu Toivola changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |DUPLICATE Status|New |Closed --- Comment #2 from Teemu Toivola --- Thanks. I didn't have the latest commit for devel/jsoncpp, I appear to have missed it by few hours. Rebuilding jsoncpp with it and then trying again wi= th devel/cmake solved the issue. Sorry that I managed to create a duplicate of= bug #224720. *** This bug has been marked as a duplicate of bug 224720 *** --=20 You are receiving this mail because: You are on the CC list for the bug.=