From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28000 invoked by alias); 3 May 2004 19:39:18 -0000 Mailing-List: contact sid-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: sid-owner@sources.redhat.com Received: (qmail 27989 invoked from network); 3 May 2004 19:39:18 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sources.redhat.com with SMTP; 3 May 2004 19:39:18 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.10/8.12.10) with ESMTP id i43JdHkI010754 for ; Mon, 3 May 2004 15:39:17 -0400 Received: from pobox.toronto.redhat.com (pobox.toronto.redhat.com [172.16.14.4]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id i43JdGv23852; Mon, 3 May 2004 15:39:16 -0400 Received: from touchme.toronto.redhat.com (IDENT:postfix@touchme.toronto.redhat.com [172.16.14.9]) by pobox.toronto.redhat.com (8.12.8/8.12.8) with ESMTP id i43JdFcU011177; Mon, 3 May 2004 15:39:15 -0400 Received: from toenail.toronto.redhat.com (toenail.toronto.redhat.com [172.16.14.211]) by touchme.toronto.redhat.com (Postfix) with ESMTP id A65A2800044; Mon, 3 May 2004 15:39:15 -0400 (EDT) Received: from toenail.toronto.redhat.com (localhost.localdomain [127.0.0.1]) by toenail.toronto.redhat.com (8.12.10/8.12.5) with ESMTP id i43JdFC1016193; Mon, 3 May 2004 15:39:15 -0400 Received: (from fche@localhost) by toenail.toronto.redhat.com (8.12.10/8.12.10/Submit) id i43JdBvv016191; Mon, 3 May 2004 15:39:11 -0400 Date: Mon, 03 May 2004 19:39:00 -0000 From: "Frank Ch. Eigler" To: Ashutosh Vyas Cc: SID public developers Subject: Re: building error in SID with eCos , using cygwin Message-ID: <20040503193911.GB15997@redhat.com> References: <20040430201257.GD6515@redhat.com> <001c01c430e2$30450bb0$5514010a@telxsi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <001c01c430e2$30450bb0$5514010a@telxsi.com> User-Agent: Mutt/1.4.1i X-SW-Source: 2004-q2/txt/msg00013.txt.bz2 Hi - > I had tried to build the tree with option "--disable-shared". But it is > still sending the same error message. Nothing has proceeded more with this. Ah, interesting. It looks like include/sidso.h should honour static-only compilation for cygwin and disable those DLLEXPORT/DLLIMPORT macros. Would you try changing the associated lines of sidso.h to // #ifdef __CYGWIN__ // #define DLLEXPORT __declspec(dllexport) // #define DLLIMPORT __declspec(dllimport) // #else #define DLLEXPORT #define DLLIMPORT // #endif and try again (still with --disable-shared)? All this is just to get you working until we have time to understand the original dll-related error message. - FChE