From owner-freebsd-questions@FreeBSD.ORG Mon Dec 11 18:26:16 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 57C1B16A4AB for ; Mon, 11 Dec 2006 18:26:16 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from smtpout.mac.com (smtpout.mac.com [17.250.248.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81C3443DC8 for ; Mon, 11 Dec 2006 17:59:35 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from mac.com (smtpin05-en2 [10.13.10.150]) by smtpout.mac.com (Xserve/8.12.11/smtpout01/MantshX 4.0) with ESMTP id kBBI0nnp000196; Mon, 11 Dec 2006 10:00:51 -0800 (PST) Received: from [17.214.13.96] (a17-214-13-96.apple.com [17.214.13.96]) (authenticated bits=0) by mac.com (Xserve/smtpin05/MantshX 4.0) with ESMTP id kBBI0ldA011174; Mon, 11 Dec 2006 10:00:48 -0800 (PST) In-Reply-To: <20061209215103.GA23691@xor.obsecurity.org> References: <41b95770612091344k5350afa9h16fc2a2104142215@mail.gmail.com> <20061209215103.GA23691@xor.obsecurity.org> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Chuck Swiger Date: Mon, 11 Dec 2006 10:00:46 -0800 To: Kris Kennaway X-Mailer: Apple Mail (2.752.2) X-Brightmail-Tracker: AAAAAA== X-Brightmail-scanned: yes Cc: freeBSD List Subject: Re: gmake upgrade X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Dec 2006 18:26:16 -0000 On Dec 9, 2006, at 1:51 PM, Kris Kennaway wrote: > gmake does not require gmake to build. If it did, how could you > build it for the first time? At one point, someone had to do something like: for file in *.c do cc -O -c $file done cc -o gmake *.o What becomes more fun is trying to bootstrap something more fundamental to the compiler toolchain, such as the assembler... :-) -- -Chuck