From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6186 invoked by alias); 19 Jan 2004 18:32:24 -0000 Mailing-List: contact insight-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: insight-owner@sources.redhat.com Received: (qmail 6165 invoked from network); 19 Jan 2004 18:32:23 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sources.redhat.com with SMTP; 19 Jan 2004 18:32:23 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.11.6/8.11.6) with ESMTP id i0JIWNl16419 for ; Mon, 19 Jan 2004 13:32:23 -0500 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [172.16.52.156]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id i0JIWMa20906; Mon, 19 Jan 2004 13:32:22 -0500 Received: from [150.1.200.14] (vpn50-1.rdu.redhat.com [172.16.50.1]) by pobox.corp.redhat.com (8.12.8/8.12.8) with ESMTP id i0JIWLR0029403; Mon, 19 Jan 2004 13:32:22 -0500 Subject: Re: building insight with mingw From: Keith Seitz To: Dave Murphy Cc: "insight@sources.redhat.com" In-Reply-To: References: Content-Type: text/plain Organization: Message-Id: <1074537426.1587.2.camel@lindt.uglyboxes.com> Mime-Version: 1.0 Date: Mon, 19 Jan 2004 18:32:00 -0000 Content-Transfer-Encoding: 7bit X-SW-Source: 2004-q1/txt/msg00014.txt.bz2 On Mon, 2004-01-19 at 10:25, Dave Murphy wrote: > does anyone read this list? Sorta. ;-) > I'm currently trying to build gdb/insight under mingw. So far I've managed > to get it to compile and install but not work as yet. Insight complains > about invalid command name "ide_cygwin_path" - I've enabled this in > tclwinpath.c but so far no joy. Is there anything else I need to do to get > tcl to recognise this command? I wasn't aware that one could compile gdb under mingw. Oh well, shows how out of touch I am... ide_cygwin_path is defined in libgui (src/libgui). It only compiles for cygwin. Since you are building for mingw and not cygwin, it is not being built. However, Insight has a ton of code which assumes that if it is running on windows, it must be under cygwin. You will need to search for all cases like this and distinguish between running on cygwin and running on mingw. Keith