From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Alfred M\. Szmidt" Newsgroups: gmane.emacs.devel Subject: Re: GTK file selector Date: Mon, 19 Dec 2005 03:26:11 +0100 Message-ID: <1134959171.009619.9806.nullmailer@Update.UU.SE> References: <871x0apnrl.fsf@marant.org> Reply-To: ams@gnu.org NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1134959299 11189 80.91.229.2 (19 Dec 2005 02:28:19 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 19 Dec 2005 02:28:19 +0000 (UTC) Cc: zedek@gnu-rox.org, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Dec 19 03:28:08 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1EoAjo-0001DP-EF for ged-emacs-devel@m.gmane.org; Mon, 19 Dec 2005 03:26:56 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EoAkd-0005yN-2a for ged-emacs-devel@m.gmane.org; Sun, 18 Dec 2005 21:27:47 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1EoAkB-0005xT-0w for emacs-devel@gnu.org; Sun, 18 Dec 2005 21:27:19 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1EoAk8-0005vx-BU for emacs-devel@gnu.org; Sun, 18 Dec 2005 21:27:18 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EoAk5-0005vt-IX for emacs-devel@gnu.org; Sun, 18 Dec 2005 21:27:16 -0500 Original-Received: from [130.238.164.5] (helo=elvira.ekonomikum.uu.se) by monty-python.gnu.org with esmtp (Exim 4.34) id 1EoAmx-0000ny-HM for emacs-devel@gnu.org; Sun, 18 Dec 2005 21:30:11 -0500 Original-Received: by elvira.ekonomikum.uu.se (Postfix, from userid 204) id 0F7BF2AD; Mon, 19 Dec 2005 03:26:20 +0100 (MEZ) Original-Received: from elvira.its.uu.se(127.0.0.1) by elvira.its.uu.se via virus-scan id s26698; Mon, 19 Dec 05 03:26:14 +0100 Original-Received: from Psilocybe.Update.UU.SE (Psilocybe.Update.UU.SE [130.238.19.25]) by elvira.ekonomikum.uu.se (Postfix) with ESMTP id 0820D20F; Mon, 19 Dec 2005 03:26:11 +0100 (MEZ) Original-Received: from localhost (localhost [127.0.0.1]) by Psilocybe.Update.UU.SE (Postfix) with ESMTP id BBB5944004; Mon, 19 Dec 2005 03:26:11 +0100 (CET) Original-Received: from Psilocybe.Update.UU.SE ([127.0.0.1]) by localhost (Psilocybe [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 24775-05-3; Mon, 19 Dec 2005 03:26:11 +0100 (CET) Original-Received: from Update.UU.SE (Lem.Update.UU.SE [130.238.19.73]) by Psilocybe.Update.UU.SE (Postfix) with SMTP id 1E94344002; Mon, 19 Dec 2005 03:26:11 +0100 (CET) Original-Received: (nullmailer pid 9807 invoked by uid 30270); Mon, 19 Dec 2005 02:26:11 -0000 Original-To: tromey@redhat.com In-reply-to: (message from Tom Tromey on 18 Dec 2005 18:41:45 -0700) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:48025 Archived-At: Incremental compilation. For proper incremental compilation you need compiler support. make style based compilation isn't really incremental, since you always need to relink the whole program and keep the original object files around (mixing object files from different compilers is also a bad idea due to ABI changes and what not), and I suspect that eclispe uses this, as does Emacs when one uses compilation-mode and GNU Make. The only system I know of that had proper incremental compilation were the Lisp Machines.