From owner-freebsd-embedded@FreeBSD.ORG Thu Oct 14 21:44:13 2010 Return-Path: Delivered-To: freebsd-embedded@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DE99B1065670 for ; Thu, 14 Oct 2010 21:44:13 +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 A23F88FC08 for ; Thu, 14 Oct 2010 21:44:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.3/8.14.1) with ESMTP id o9ELY7kn010480; Thu, 14 Oct 2010 15:34:08 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Thu, 14 Oct 2010 15:34:07 -0600 (MDT) Message-Id: <20101014.153407.84142211.imp@bsdimp.com> To: matt.schnall@gmail.com From: Warner Losh In-Reply-To: References: X-Mailer: Mew version 6.3 on Emacs 23.2 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: freebsd-embedded@FreeBSD.org Subject: Re: Creating New Cross-Compiled Build Target X-BeenThere: freebsd-embedded@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Dedicated and Embedded Systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Oct 2010 21:44:13 -0000 In message: Matthew Schnall writes: : I am a student at CMU taking a OS project course : (www.cs.cmu.edu/~412). My project is creating a port of freeBSD to the : new Tilera chips. The chip has a mips like architecture. There is a : gcc cross compiler from x86 to the tilera assembly. I was curious if : someone could help guide me through the steps to create a new : cross-compiled target within the freeBSD build infrastructure. There's lots of people that are interested in doing a port to Tilera. I'd start with 'setenv TARGET tilera' and 'setenv TARGET_ARCH tilera' and then 'make buildworld' and fix what breaks. Chances are good you'll need some WIP that I have to support out-of-tree toolchains... Warner