Return-Path: Delivered-To: apmail-incubator-stdcxx-user-archive@www.apache.org Received: (qmail 61643 invoked from network); 18 Aug 2006 16:11:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 18 Aug 2006 16:11:33 -0000 Received: (qmail 63622 invoked by uid 500); 18 Aug 2006 16:11:32 -0000 Delivered-To: apmail-incubator-stdcxx-user-archive@incubator.apache.org Received: (qmail 63611 invoked by uid 500); 18 Aug 2006 16:11:32 -0000 Mailing-List: contact stdcxx-user-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: stdcxx-user@incubator.apache.org Delivered-To: mailing list stdcxx-user@incubator.apache.org Received: (qmail 63584 invoked by uid 99); 18 Aug 2006 16:11:32 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Aug 2006 09:11:32 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [208.30.140.160] (HELO moroha.quovadx.com) (208.30.140.160) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Aug 2006 09:11:31 -0700 Received: from qxvcexch01.ad.quovadx.com (qxvcexch01.ad.quovadx.com [192.168.170.59]) by moroha.quovadx.com (8.13.6/8.13.4) with ESMTP id k7IGAxs8032460; Fri, 18 Aug 2006 16:10:59 GMT Received: from [10.70.3.113] ([10.70.3.113]) by qxvcexch01.ad.quovadx.com with Microsoft SMTPSVC(6.0.3790.1830); Fri, 18 Aug 2006 10:11:13 -0600 Message-ID: <44E5E69B.1080104@roguewave.com> Date: Fri, 18 Aug 2006 10:11:07 -0600 From: Martin Sebor Organization: Rogue Wave Software User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050920 X-Accept-Language: en-us, en MIME-Version: 1.0 To: stdcxx-user@incubator.apache.org CC: Michael Fox Subject: Re: [Fwd: Re: MS VS Express problems...] References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 18 Aug 2006 16:11:13.0852 (UTC) FILETIME=[ED6E27C0:01C6C2E0] X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Farid Zaripov wrote: >>-----Original Message----- >>From: Martin Sebor [mailto:sebor@roguewave.com] >>Sent: Thursday, August 17, 2006 8:35 PM >>To: stdcxx-user@incubator.apache.org >>Cc: Michael Fox >>Subject: Re: [Fwd: Re: MS VS Express problems...] >> >> >>> I started installation of MSVC Express from microsoft >> >>site. When it >> >>>will be done I'l try build the library. >> >>Great! Thanks a lot for looking into it! It will be helpful >>to have a solution in place (and documented) for the Express edition. > > > I haven't problems with building the libraries using MSVC Express. > The examples and tests failed to link. The reason is that by default > MSVCExpress links with kernel32.lib only. What is needed to do is > change the line in file C:\Program Files\Microsoft Visual Studio > 8\VC\VCProjectDefaults\corewin_express.vsprops > AdditionalDependencies="kernel32.lib"/> > to the > AdditionalDependencies="kernel32.lib user32.lib > gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib > oleaut32.lib uuid.lib odbc32.lib odbccp32.lib"/> Do we need all these libraries? We normally link only with user32.lib. > > I will add a configuration "msvcex-8.0" to the solution generate > scripts to support MSVCExpress. That will be fantastic! > In this configuration AdditionalDependencies abowe will be explicitly > specified in all projects to avoid > dependence from content of corewin_express.vsprops file. Sounds good! Martin