From owner-freebsd-hackers Mon Mar 24 14:10:39 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id OAA12903 for hackers-outgoing; Mon, 24 Mar 1997 14:10:39 -0800 (PST) Received: from proxy1.ba.best.com (root@proxy1.ba.best.com [206.184.139.12]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id OAA12896 for ; Mon, 24 Mar 1997 14:10:35 -0800 (PST) Received: from shellx.best.com (shellx.best.com [206.86.0.11]) by proxy1.ba.best.com (8.8.5/8.8.3) with SMTP id OAA14884; Mon, 24 Mar 1997 14:04:22 -0800 (PST) Date: Mon, 24 Mar 1997 14:04:22 -0800 (PST) From: Burton Sampley To: Obi Wan Oblivion cc: freebsd-hackers@freebsd.org Subject: Re: Problems with math.h In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-hackers@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Try g++ -lm. You need to tell gcc to link the math libraries with the -lm command/option. On Mon, 24 Mar 1997, Obi Wan Oblivion wrote: > To Whom It May Concern: > > I am running 2.1.5 and cannot seem to get "sqrt" or "sqrtf" to work. A > good example would be: > > #include > #include > > main() { > > unsigned long int number,result; > > number = 64; > > result = (unsigned long int)sqrt((double)number); > > printf("The square root of %d is %d\n", number, result); > > return(0); > > } > > I build this with "cc -g -o" and get an "Undfined symbol _sqrt". Are > these math functions not in the standard library, or am I doing something > really bone-headed? Also, is typecasting appropriate in this case or > will lint shut up and let me do the conversion? > > Thanks! > > -Jeff > > >