From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Dmitry Antipov Newsgroups: gmane.emacs.devel Subject: Re: WINDRES Date: Mon, 01 Apr 2013 19:18:46 +0400 Message-ID: <5159A556.4050205@yandex.ru> References: <83mwti382v.fsf@gnu.org> <83ip4631sc.fsf@gnu.org> <83d2ue2x0r.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1364829543 12311 80.91.229.3 (1 Apr 2013 15:19:03 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 1 Apr 2013 15:19:03 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Apr 01 17:19:31 2013 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1UMgW7-0001kM-SK for ged-emacs-devel@m.gmane.org; Mon, 01 Apr 2013 17:19:27 +0200 Original-Received: from localhost ([::1]:55741 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UMgVj-0005Wr-5q for ged-emacs-devel@m.gmane.org; Mon, 01 Apr 2013 11:19:03 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:48711) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UMgVb-0005WM-PG for emacs-devel@gnu.org; Mon, 01 Apr 2013 11:19:00 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UMgVY-0006JE-Jr for emacs-devel@gnu.org; Mon, 01 Apr 2013 11:18:55 -0400 Original-Received: from forward8.mail.yandex.net ([77.88.61.38]:53038) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UMgVY-0006IE-3U for emacs-devel@gnu.org; Mon, 01 Apr 2013 11:18:52 -0400 Original-Received: from smtp9.mail.yandex.net (smtp9.mail.yandex.net [77.88.61.35]) by forward8.mail.yandex.net (Yandex) with ESMTP id E40C4F61772 for ; Mon, 1 Apr 2013 19:18:46 +0400 (MSK) Original-Received: from smtp9.mail.yandex.net (localhost [127.0.0.1]) by smtp9.mail.yandex.net (Yandex) with ESMTP id C83B2152075A for ; Mon, 1 Apr 2013 19:18:46 +0400 (MSK) Original-Received: from unknown (unknown [37.139.80.10]) by smtp9.mail.yandex.net (nwsmtp/Yandex) with ESMTP id yqMtW8YSVA-IkRKLspF; Mon, 1 Apr 2013 19:18:46 +0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1364829526; bh=VCa75FHHUYU+dijODZ0pkymO6oOngpB0ZcsQfa58ocY=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:Subject: References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=txMNdsXa15QvFQlRcjibaxitbWmrZQioZzJQg484rjrQNlE3L79eYU8CpKc8Qzppd FqePSJM7uP/Pijl37/Y8f6amcH0uKz/7qhRVI/j0bKxGgKuWpF4fx3/Rg3ekIJs717 7vwF2muWLjiJ93rbhEHxyIRNMrDs7PduSY7XjU60= User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130307 Thunderbird/17.0.4 In-Reply-To: <83d2ue2x0r.fsf@gnu.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] [fuzzy] X-Received-From: 77.88.61.38 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:158519 Archived-At: On 04/01/2013 05:36 PM, Eli Zaretskii wrote: > So "target" is for when I build on build, and run on host to produce > code for target? IIUC "target" is meaningful for compilers only; "host" is the system where the binary is intended to run, and "build" is the system where the binary is compiled. Cross-compilation always assumes that at least host != build; all of the host/build/target are different only if you're cross-compiling the cross-compiler ("canadian cross"). Dmitry