X-Recipient: archive-cygwin@delorie.com
X-Spam-Check-By: sourceware.org
From: "Dave Korn" <dave.korn@artimi.com>
To: <cygwin@cygwin.com>
References: <Prayer.1.0.18.0710251014170.2520@webmail0.york.ac.uk>
Subject: RE: iostream with gcc
Date: Thu, 25 Oct 2007 10:23:30 +0100
Message-ID: <006d01c816e8$b4ee9ee0$2e08a8c0@CAM.ARTIMI.COM>
MIME-Version: 1.0
Content-Type: text/plain; 	charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Mailer: Microsoft Office Outlook 11
In-Reply-To: <Prayer.1.0.18.0710251014170.2520@webmail0.york.ac.uk>
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
Precedence: bulk
List-Id: <cygwin.cygwin.com>
List-Unsubscribe: <mailto:cygwin-unsubscribe-archive-cygwin=delorie.com@cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com

On 25 October 2007 10:14, Peter M Lee wrote:

> I apologize for what is probably a silly mistake on my part. I am just
> starting to use cygwin. When I tried a simple program
> 
> #include <iostream>
> using namespace std;
> 
> /**
>  * A simple program for demonstrating the basics of a C++ project.
>  */
> 
> int main() {
>     cout << "Hello, world";
>     cout << endl;
> 
>   return 0;
> }
> 
> with
> 
> $ gcc hello.cc
> 
> I got the following error message
> 
>
/cygdrive/c/Users/PB2579~1/AppData/Local/Temp/cc7nz7Xj.o:hello.cc:(.text+0xd):
> undefined reference to `std::basic_string<char, std::char_traits<char>,
> std::allocator<char> >::size() const'


  Use 'g++' to compile c++ programs, not 'gcc'.  Although they both are ver
similar drivers that invoke the sub-parts of the toolchain (compiler,
assembler, linkers), and in fact either one can recognize the extension of a
file and pass it to the right language version of the compiler, the g++ driver
also knows to add the appropriate -L and -l options for linking against the
standard C++ libraries automatically.


    cheers,
      DaveK
-- 
Can't think of a witty .sigline today....


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

