From owner-freebsd-ports@freebsd.org Wed Sep 9 16:02:37 2015 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8494D9CC622 for ; Wed, 9 Sep 2015 16:02:37 +0000 (UTC) (envelope-from vivek@khera.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 5F5CF1BE1 for ; Wed, 9 Sep 2015 16:02:37 +0000 (UTC) (envelope-from vivek@khera.org) Received: by mailman.ysv.freebsd.org (Postfix) id 5C49F9CC621; Wed, 9 Sep 2015 16:02:37 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 410109CC620 for ; Wed, 9 Sep 2015 16:02:37 +0000 (UTC) (envelope-from vivek@khera.org) Received: from mail-wi0-x22e.google.com (mail-wi0-x22e.google.com [IPv6:2a00:1450:400c:c05::22e]) (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 C290E1BE0 for ; Wed, 9 Sep 2015 16:02:36 +0000 (UTC) (envelope-from vivek@khera.org) Received: by wicge5 with SMTP id ge5so161083061wic.0 for ; Wed, 09 Sep 2015 09:02:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=khera.org; s=google11; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=Oam5s7yIU8gRBKKnZ0suxctamtCg6BZDhKZ6yM2BfcM=; b=BQH1njyOWzqA+KL96OO79JpBjqf9FWph3+3fGzdHdV17bjJUrm6nmaaD8T0tGwzGyH XlQzA00xS/c136X11p4eXtTHeefqEId5DYEWGKuzmrhkEkEr+Vt2UtlbHxnIVG/qqZQ7 2hKA8PsG7j96ZSlWLGExFI2M4CayVEhnXficQ= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:content-type; bh=Oam5s7yIU8gRBKKnZ0suxctamtCg6BZDhKZ6yM2BfcM=; b=MEyUEXEmof5fzbQOLcPc4XlRhE2ARnGcZutvBTff5GnfifoGJlTifVoBusyxfMLrQx ccgbaYqA0+IHhsClWYeLqFoZV4hh9TkIiJmG7YRVq/tRMvu2gNc46rOMRxB0jpA+Es/1 U5uwZ/utF6HHFyOXfYzsFd858mmTrSuFAZ7pCubxjsjfYKAdretOz92+Mb8KNNEqOz89 X+f0splHiAUpbw1UW0bdV7askI4P+x3zo1BpFMRTNMFLk0pHXdoAZoQlF+Lvm/xgQbz+ 66HNiGdbTx7BTsJnTc+M+GXkn3dO5HoLpeOJEbbeq+d8jbaNDPsP1j1Pc+YEUHU8aESb tSvg== X-Gm-Message-State: ALoCoQkjUSAllA4vZ/bQ6fV75QeQYVpAvZ0Ek1GJStbX3vMgpcE9U8r8Qevc29pa1WWSk1UsCp/S MIME-Version: 1.0 X-Received: by 10.194.246.136 with SMTP id xw8mr59972163wjc.42.1441814555023; Wed, 09 Sep 2015 09:02:35 -0700 (PDT) Received: by 10.28.45.67 with HTTP; Wed, 9 Sep 2015 09:02:34 -0700 (PDT) In-Reply-To: References: Date: Wed, 9 Sep 2015 12:02:34 -0400 Message-ID: Subject: Re: unable to boostrap go From: Vick Khera To: FreeBSD Ports List Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Sep 2015 16:02:37 -0000 On Wed, Sep 9, 2015 at 11:19 AM, Vick Khera wrote: > When I use a GENERIC 10.2 kernel, those same binaries do not dump core > when running "go version". > > Does anyone know what specific kernel config option/device go is now needs > in the 10.2 kernel that was allowed in the 10.1 kernel by default? It is > failing here according to gdb: > Found the trick. Go *requires* COMPAT_FREEBSD32 in the kernel. My 10.1 and 10.2 configs referenced an included file that differed in that respect, and once I restored that it started working. I had missed that file comparison earlier.