From owner-freebsd-chat@FreeBSD.ORG Tue Oct 19 02:47:19 2004 Return-Path: Delivered-To: freebsd-chat@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D201616A4CE; Tue, 19 Oct 2004 02:47:19 +0000 (GMT) Received: from mail.cableone.net (scanmail2.cableone.net [24.116.0.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B99843D5A; Tue, 19 Oct 2004 02:47:19 +0000 (GMT) (envelope-from v.velox@vvelox.net) Received: from vixen42.24-119-122-191.cpe.cableone.net (unverified [24.119.122.25]) by smail2.cableone.net (SurgeMail 1.9b) with ESMTP id 22490726 for multiple; Mon, 18 Oct 2004 19:46:06 -0700 Date: Mon, 18 Oct 2004 21:46:40 -0500 From: Vulpes Velox To: Giorgos Keramidas Message-ID: <20041018214640.6d110a53@vixen42.24-119-122-191.cpe.cableone.net> In-Reply-To: <20041018235001.GA99564@gothmog.gr> References: <20041018184016.3dbed7b8@vixen42.24-119-122-191.cpe.cableone.net> <20041018235001.GA99564@gothmog.gr> X-Mailer: Sylpheed-Claws 0.9.12b (GTK+ 1.2.10; i386-portbld-freebsd4.10) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Server: High Performance Mail Server - http://surgemail.com cc: chat@freebsd.org Subject: Re: learning c++ X-BeenThere: freebsd-chat@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Non technical items related to the community List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2004 02:47:19 -0000 On Tue, 19 Oct 2004 02:50:01 +0300 Giorgos Keramidas wrote: > On 2004-10-18 18:40, Vulpes Velox wrote: > > Any one know of any good guides to learning C++, specifically in > > regards to the newer gcc? > > > > Currently been messing with it a bit, but I am figuring that I am > > doing something wrong... been messing with learning strings and > > the like and I am getting a a.out that has a obscene size... 142kB > > in size... > > Is your executable dynamically or statically linked? The following > small C++ program builds into an a.out file of about 6 Kb, which is > rather small -- certainly not hundreds of kilobytes. > > 1 #include > 2 #include > 3 > 4 using namespace std; > 5 > 6 int > 7 main(void) > 8 { > 9 cout << "Hello C++ world" << endl; > 10 return (0); > 11 } > giorgos@gothmog[02:45]/home/giorgos$ c++ -W -Wall hello.cc > giorgos@gothmog[02:46]/home/giorgos$ ls -l a.out > -rwxrwxr-x 1 giorgos giorgos 6952 Oct 19 02:46 a.out > giorgos@gothmog[02:46]/home/giorgos$ ./a.out > Hello C++ world > giorgos@gothmog[02:46]/home/giorgos$ ldd a.out > a.out: > libstdc++.so.4 => /usr/lib/libstdc++.so.4 (0x28075000) > libm.so.3 => /lib/libm.so.3 (0x28147000) > libc.so.6 => /lib/libc.so.6 (0x28161000) Managed to get it down to 248448, which appears to be the smallest size I can manage to generate with c++... any ideas? btw if it makes a difference, I am running 4stable