Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 26606 invoked from network); 5 Mar 2007 18:28:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Mar 2007 18:28:59 -0000 Received: (qmail 14788 invoked by uid 500); 5 Mar 2007 18:29:07 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 14778 invoked by uid 500); 5 Mar 2007 18:29:07 -0000 Mailing-List: contact stdcxx-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: stdcxx-dev@incubator.apache.org Delivered-To: mailing list stdcxx-dev@incubator.apache.org Received: (qmail 14767 invoked by uid 99); 5 Mar 2007 18:29:07 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Mar 2007 10:29:07 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of Farid_Zaripov@epam.com designates 217.21.63.3 as permitted sender) Received: from [217.21.63.3] (HELO EPMSA009.epam.com) (217.21.63.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Mar 2007 10:28:52 -0800 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: RE: Cygwin cannot find -lstd12d Date: Mon, 5 Mar 2007 20:28:29 +0200 Message-ID: <7BDB2168BEAEF14C98F1901FD2DE64384E1B73@epmsa009.minsk.epam.com> In-Reply-To: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Cygwin cannot find -lstd12d Thread-Index: AcdckkaBjG2MFdsBRfy8/7ipoZSi0QCwQ9Zg From: "Farid Zaripov" To: X-Virus-Checked: Checked by ClamAV on apache.org > -----Original Message----- > From: Mark Brown [mailto:mbrown@inbox.com]=20 > Sent: Friday, March 02, 2007 8:15 AM > To: stdcxx-dev@incubator.apache.org > Subject: Cygwin cannot find -lstd12d >=20 > Sorry about all the emails tonight. I'm sending them out as I=20 > run into things. Hopefully they'll be useful. After the=20 > library built all examples are now getting the same error.=20 > Looks like the Cygwin linker can't find the library even=20 > though it's there (I checked :) There exist libstd12d.so which is DLL file, but linker requires the libstd12d.a file (import library). >=20 > $ make > gcc -c -I/home/mbrown/stdcxx/include/ansi -mthreads=20 > -D_RWSTD_USE_CONFIG -I/home/mbrown/stdcxx/include=20 > -I/home/mbrown/stdcxx-12d/include=20 > -I/home/mbrown/stdcxx/examples/include -pedantic -nostdinc++=20 > -O2 -W -Wall -Wcast-qual -Winline -Wshadow -Wwrite-strings=20 > -Wno-long-long -Wcast-align =20 > /home/mbrown/stdcxx/examples/manual/accumulate.cpp >=20 > (...lots of warnings about failed inlining...) >=20 > gcc accumulate.o -o accumulate -mthreads=20 > -L/home/mbrown/stdcxx-12d/lib -lstd12d -lsupc++ -lcatgets -liconv -lm > /usr/lib/gcc/i686-pc-cygwin/3.4.4/../../../../i686-pc-cygwin/b > in/ld: cannot find -lstd12d > collect2: ld returned 1 exit status > make: *** [accumulate] Error 1 Farid.