tgamma function in math library

2010-01-01 Thread Pierre Abbat
I just copied one of my programming projects to the laptop and attempted to compile it. The compiler bombed out on the line: denom=tgamma(sh); According to the man page for gamma on Linux: *BSD version 4.4BSD and FreeBSD libm have a gamma() function that computes the Gamma funct

Re: tgamma function in math library

2010-01-01 Thread Karthik Subramanian
On Fri, Jan 1, 2010 at 10:52 PM, Pierre Abbat wrote: > I just copied one of my programming projects to the laptop and attempted to > compile it. The compiler bombed out on the line: >  denom=tgamma(sh); > According to the man page for gamma on Linux: > >   *BSD version >       4.4BSD and FreeBSD l

Re: tgamma function in math library

2010-01-01 Thread Karthik Subramanian
On Fri, Jan 1, 2010 at 11:03 PM, Karthik Subramanian wrote: > On Fri, Jan 1, 2010 at 10:52 PM, Pierre Abbat wrote: >> I just copied one of my programming projects to the laptop and attempted to >> compile it. The compiler bombed out on the line: >>  denom=tgamma(sh); >> According to the man page

Anyone have kdevelop working on dfly?

2010-01-01 Thread Pierre Abbat
I have succeeded in installing KDevelop. I copied another project, tried to automake/configure/build it, and got a fork bomb in libtool. I made a hello project and got the following error: UNAME_MACHINE = i386 UNAME_RELEASE = 2.5.1-DEVELOPMENT UNAME_SYSTEM = DragonFly UNAME_VERSION = DragonFly v

Re: tgamma function in math library

2010-01-01 Thread Simon 'corecode' Schubert
Karthik Subramanian wrote: Perhaps you could write a wrapper called gamma() that does something like this: = structutsname *ub; /* malloc, etc. */ if(uname(ub)) { die(); } if (strcmp(ub->sysname, "Linux") { tgamma(); } else { gamma(); } That's wont work - you can't call th

tried to run ltp

2010-01-01 Thread Pierre Abbat
I copied ltp to the DFly box and tried to run it, and got the following: INFO: creating /usr/local/results directory INFO: no command files were provided, using default, system calls, memory management, IPC, scheduler direct io, file system, math and pty tests will

Re: tried to run ltp

2010-01-01 Thread Alex Hornung
> Didn't get anywhere near trying to test the Linux ABI. How do I get around the > missing programs and /proc/cpuinfo? Am not quite sure about the programs, but mounting linprocfs should do the trick for /proc.

Re: Anyone have kdevelop working on dfly?

2010-01-01 Thread Ed Berger
There's probably old config.guess and config.sub scripts running. Try replacing with config.guess and config.sub scripts out of pkgsrc.

Re: Anyone have kdevelop working on dfly?

2010-01-01 Thread Pierre Abbat
On Friday 01 January 2010 18:41:31 Ed Berger wrote: > There's probably old config.guess and config.sub scripts running. > Try replacing with config.guess and config.sub scripts out of pkgsrc. The config.guess and config.sub in hello are dated 2002. The ones in the project I copied over, however,