From owner-freebsd-mips@FreeBSD.ORG Sat Dec 1 10:14:49 2012 Return-Path: Delivered-To: freebsd-mips@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 20CFEA30 for ; Sat, 1 Dec 2012 10:14:49 +0000 (UTC) (envelope-from mukunda@pointred.co) Received: from na3sys010aog111.obsmtp.com (na3sys010aog111.obsmtp.com [74.125.245.90]) by mx1.freebsd.org (Postfix) with SMTP id 80ED28FC0C for ; Sat, 1 Dec 2012 10:14:48 +0000 (UTC) Received: from mail-qa0-f72.google.com ([209.85.216.72]) (using TLSv1) by na3sys010aob111.postini.com ([74.125.244.12]) with SMTP ID DSNKULnYl8839LIvxsO9sD33JFMK9aO2ohBD@postini.com; Sat, 01 Dec 2012 02:14:48 PST Received: by mail-qa0-f72.google.com with SMTP id o13so1446204qaj.7 for ; Sat, 01 Dec 2012 02:14:47 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:x-gm-message-state; bh=JyGTydUA/sP+m59dtFmPXVYWqMPu/bSNsyOuEUllJBs=; b=pVIYrl/3GqJlr7T8weCgaXDmDoWen1N0LMgw8rsNrD2ZVlPNGQCG6RXvAs+ekiFUt1 IpgJm9DHKkFa3Nfa0r6j3HEwkxK5M0aVgEUMD7CrjpLAu76FDgP6UvlFBaBVyo7Xr/y0 QQZ3xkiyPuSnPm5A3FM90gQf9C1wwlvyb3lQURQfXJMGsEcpmMghN7Y88Hy8JR0WtvjP /4bSkKEUllPNhF4v850YND14v9v9S7ATV0F4DmpjA55PNAhQoiPP6jHPImttNKt1wIhb o7SslRz0cfGt1b/gI94nEh0HknomOdF5WWJgdzcFqbZ+RyMbN5cKed6VggygViDIJF/z QyRA== Received: by 10.59.1.232 with SMTP id bj8mr3503061ved.22.1354355123140; Sat, 01 Dec 2012 01:45:23 -0800 (PST) MIME-Version: 1.0 Received: by 10.59.1.232 with SMTP id bj8mr3503057ved.22.1354355122997; Sat, 01 Dec 2012 01:45:22 -0800 (PST) Received: by 10.58.203.37 with HTTP; Sat, 1 Dec 2012 01:45:22 -0800 (PST) In-Reply-To: <50B931BA.1060307@bluezbox.com> References: <50B931BA.1060307@bluezbox.com> Date: Sat, 1 Dec 2012 15:15:22 +0530 Message-ID: Subject: Re: Build Broken ? From: Mukunda Haveri To: Oleksandr Tymoshenko X-Gm-Message-State: ALoCoQm84876NAqzt/n1o2FMpqW0ow41gdqJaxlrvUzqaxOw/sGqbXBKvnB4Y9liEDcYkEAT7qq4VWt7lxDenjNc663KYwZ2udKOz4Obx9Kmpcaqm19JrbXTWyOu5Dn404tPmpS14EpUmHqmYvKZbvpnHTPrzFge0QaP/tYPsIc/I7aaEWtoKVU= Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: freebsd-mips@freebsd.org X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Dec 2012 10:14:49 -0000 Thanks, checked out 243746 my build script is -------------------- #!/bin/csh -x if ( $# < 3 ) then echo Usage: $0 build-options [source-dir platform make-target] exit 127 endif set srcroot=$1 shift setenv TARGET mips setenv TARGET_ARCH mipseb setenv TARGET_CPUTYPE mips32 setenv KERNCONF $2 setenv MAKEOBJDIRPREFIX ${srcroot}/../obj setenv MIPSNFS ${srcroot}/../nfsroot setenv TFTPBOOT ${srcroot}/../tftp setenv SRCCONF /root/mips/src.conf.mips setenv __MAKE_CONF /root/mips/make.conf.mips shift cd ${srcroot} echo making $argv make $argv ------------------- and the script is executed as < ./bld.sh /root/svn/src PB47 buildworld > What is the minimum set that should not be set as WITHOUT_MODULES? I am currently using in src.conf.mips, WITHOUT_CDDL=1 WITHOUT_GAMES=1 WITHOUT_DOCS=1 WITHOUT_ACPI=1 WITHOUT_KERBEROS=1 WITHOUT_RESCUE=1 WITHOUT_MAN=1 WITHOUT_PROFILE=1 WITHOUT_NIS=1 WITHOUT_IPX=1 WITHOUT_ATM=1 WITHOUT_BLUETOOTH=1 WITHOUT_CALENDAR=1 Please help. Thanks, HSM On Sat, Dec 1, 2012 at 3:52 AM, Oleksandr Tymoshenko wrote: > On 11/30/2012 5:38 AM, Mukunda Haveri wrote: > >> I am trying to build the 'kernel-toolchain' and the build breaks right at >> the start. The symptoms are posted below.. >> <<<<< >> cc -O2 -pipe -I. -I/root/base/gnu/usr.bin/dtc >> -I/root/base/gnu/usr.bin/dtc/.**./../../contrib/dtc >> -I/root/base/gnu/usr.bin/dtc/.**./../../sys/contrib/libfdt -DNDEBUG >> -std=gnu99 -I/root/mips/obj/mips.mips/**root/base/tmp/legacy/usr/**include >> -c >> /root/base/gnu/usr.bin/dtc/../**../../sys/contrib/libfdt/fdt_**wip.c >> make: don't know how to make >> /root/mips/obj/mips.mips/root/**base/tmp/legacy/usr/lib/**libegacy.a. >> Stop >> *** [bootstrap-tools] Error code 2 >> How I can get over this problem? OR is the build broken? I am using >> revision 243673 of the head... >> >> r243713 builds for me. Please share your build script/environment. > DISCLAIMER: The information contained in this message (including any attachments) is confidential and may be privileged. If you have received it by mistake please notify the sender by return e-mail and permanently delete this message and any attachments from your system. Any dissemination, use, review, distribution, printing or copying of this message in whole or in part is strictly prohibited. Please note that e-mails are susceptible to change. PointRed Telecom Ltd (including its group companies) shall not be liable for the improper or incomplete transmission of the information contained in this communication nor for any delay in its receipt or damage to your system and does not guarantee that the integrity of this communication has been maintained or that this communication is free of viruses, interceptions or interferences.