From owner-freebsd-current@FreeBSD.ORG Sat Jun 26 02:52:14 2010 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 84F7F1065670 for ; Sat, 26 Jun 2010 02:52:14 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 4ACDE8FC1C for ; Sat, 26 Jun 2010 02:52:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.3/8.14.1) with ESMTP id o5Q2nO6V038127 for ; Fri, 25 Jun 2010 20:49:24 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Fri, 25 Jun 2010 20:49:37 -0600 (MDT) Message-Id: <20100625.204937.1137842809181322773.imp@bsdimp.com> To: current@freebsd.org From: "M. Warner Losh" X-Mailer: Mew version 6.3 on Emacs 22.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: Subject: HEADS-UP: object directory name change X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 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: Sat, 26 Jun 2010 02:52:14 -0000 I recently committed a change that changes the name of the object tree where things are built to if you are cross compiling. Rather than /usr/obj/$TARGET_ARCH, it is now /usr/obj/$TARGET.$TARGET_ARCH. The reason for the change is so that embedded platforms with multiple endians can compile into the same tree. This means that if you are cross building on a regular basis, you'll need to update your cross tools. If you are building kernels, then you'll need a make kernel-toolchain for things to work again. You'll also be able to reclaim the disk space used by the old tree. If you want, a simple mv will do the trick. In a few days mips and arm will change how endian is represented and you'll need two trees for each if you want to compile both endians (one for mips.mipsel and one for mips.mipseb). I'm still working out some snags with how make universe will cope with the kernels, so I've not pulled the trigger on that change yet. thank you for your patience... Warner