From owner-p4-projects Thu Mar 13 14:55:15 2003 Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id F2D4837B405; Thu, 13 Mar 2003 14:55:12 -0800 (PST) Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 895A537B401 for ; Thu, 13 Mar 2003 14:55:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 101D143F93 for ; Thu, 13 Mar 2003 14:55:12 -0800 (PST) (envelope-from jmallett@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2DMtB0U002802 for ; Thu, 13 Mar 2003 14:55:11 -0800 (PST) (envelope-from jmallett@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2DMtBeE002799 for perforce@freebsd.org; Thu, 13 Mar 2003 14:55:11 -0800 (PST) Date: Thu, 13 Mar 2003 14:55:11 -0800 (PST) Message-Id: <200303132255.h2DMtBeE002799@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to jmallett@freebsd.org using -f From: Juli Mallett Subject: PERFORCE change 26856 for review To: Perforce Change Reviews Sender: owner-p4-projects@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG http://perforce.freebsd.org/chv.cgi?CH=26856 Change 26856 by jmallett@jmallett_dalek on 2003/03/13 14:54:46 (Soothing Image 12) Add elf2ecoff, complete with ECOFF hackery to make it a friendly little build tool. Alpha's OSF/1 compatability includes ECOFF stuff, so maybe we want full image activation / execution framework for ECOFF ala NetBSD, and so on. I don't have much of an intent to run an ECOFF userland though, this is just for loader, in time. Affected files ... .. //depot/projects/mips/Makefile.inc1#11 edit .. //depot/projects/mips/usr.bin/elf2ecoff/Makefile#1 add .. //depot/projects/mips/usr.bin/elf2ecoff/ecoff_machdep.h#1 add .. //depot/projects/mips/usr.bin/elf2ecoff/ecoff_mips.h#1 add .. //depot/projects/mips/usr.bin/elf2ecoff/elf2ecoff.1#1 add .. //depot/projects/mips/usr.bin/elf2ecoff/elf2ecoff.c#1 add .. //depot/projects/mips/usr.bin/elf2ecoff/exec_ecoff.h#1 add Differences ... ==== //depot/projects/mips/Makefile.inc1#11 (text+ko) ==== @@ -684,10 +684,14 @@ _elf2aout= usr.bin/elf2aout .endif +.if ${TARGET_ARCH} == "mips" +_elf2ecoff= usr.bin/elf2ecoff +.endif + _xlint= usr.bin/xlint/lint1 usr.bin/xlint/lint2 usr.bin/xlint/xlint cross-tools: -.for _tool in ${_btxld} ${_elf2aout} ${_elf2exe} \ +.for _tool in ${_btxld} ${_elf2aout} ${_elf2ecoff} ${_elf2exe} \ gnu/usr.bin/binutils usr.sbin/crunch/crunchide \ gnu/usr.bin/cc ${_xlint} ${ECHODIR} "===> ${_tool}"; \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe p4-projects" in the body of the message