Sponsored Content
Full Discussion: Solaris 9 lroundf errors
Operating Systems Solaris Solaris 9 lroundf errors Post 302291761 by wolfhurt on Thursday 26th of February 2009 09:35:37 AM
Old 02-26-2009
Solaris 9 lroundf errors

When I want to install some softwares from source with gcc/4.3 on a sparc solaris 9

I always have errors like this one : (example with lapack-3.2)
Code:
../../lapack_SUN4.a(slacn2.o): In function `slacn2_':
slacn2.f:(.text+0x1b0): undefined reference to `lroundf'
slacn2.f:(.text+0x370): undefined reference to `lroundf'

same error message with llroundf, modf, modff

is the problem from libm.so ?
or gcc is badly compiled ?

how can I resolve this problem ? help please

regards,

Nicolas Vergnes

Last edited by wolfhurt; 02-26-2009 at 10:51 AM..
 

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Solaris pkgmk -> prototype errors...

I'm attempting to create another package (i.e. for utilizing pkgadd/pkgrm/pkgchk/etc.) But after creating the prototype file, I noticed that some of my files begin with the '=' character. How do I get pkgmk to interpret the "/path/=file" as a single file, rather than interpreting it as... (7 Replies)
Discussion started by: mslightn
7 Replies

2. Solaris

Solaris Installation errors Please help

Hi to all I have a sun Ultra 10 workstation with the following configuration SUN ULTRA-10 Workstation 440 Mhz CPU 1024 MB RAM 40 GB HDD Seagate (Connected as Primary master) FDD Samsung DVD Writer (connected as Secondary master) CABINET SMPS Sun keyboard and mouse the command -... (3 Replies)
Discussion started by: network45
3 Replies

3. Solaris

Errors trying to compile PHP for use with MySQL on Solaris 10

have installed and am using the GNU based tools from the Sunfreeware site to compile PHP. I already have Apache, MySQL, and Oracle compiled and working properly. Below is my configure string for my PHP build: ./configure --prefix=/usr/local/php5 \... (2 Replies)
Discussion started by: sunsysadm2003
2 Replies

4. Solaris

Solaris Zone errors

after booting up my zone i get following error # zlogin -C DB_zone Sep 29 09:18:46 svc.startd: Could not log for svc:/system/filesystem/root:default: write(51) failed with I/O error. Sep 29 09:18:47 svc.startd: Could not log for svc:/system/installupdates:default: write(17) failed with... (5 Replies)
Discussion started by: fugitive
5 Replies

5. Solaris

Errors in postfix configuration on solaris 10

Hi Geeks, I am trying to configure 'postfix' for sending mail only instead of 'sendmail'. I am getting following error when I try to send mail using mailx command. #echo "test" | mailx -s "test mail" <username> -- command executed from server --/var/log/syslog output : Jul 8 12:55:44... (0 Replies)
Discussion started by: abhkadam
0 Replies

6. Linux

xset errors when trying to remote x11 from solaris

Hi all, Trying to achieve: Remote X11 app (advance trader workstation... really old) from solaris to linux. This app uses a startup script that loads some fonts via xset. I get an error from xset saying "incorrect font server address or syntax" Of course its not correct since i'm... (0 Replies)
Discussion started by: maverick72
0 Replies

7. Solaris

Solaris with Soft Errors in XIV

Hi guys, I had a solaris box, with veritas controled disk. 1 disc is showing soft errors, how can I repair the soft errors? Please help. Cheers; (4 Replies)
Discussion started by: Mujakol
4 Replies

8. Solaris

apache 2.2.22 Solaris errors

Hi, I have installed apache 2.2.22 on solaris machine and trying to do some basic testing, but it is failing for one of the scenario. Seeing below in the error logs But noy sure why there is a need for AuthUserFile when i mentioned AuthldapURL. Please advise Thanks (1 Reply)
Discussion started by: prash358
1 Replies

9. UNIX for Beginners Questions & Answers

Creating a tarball on Solaris issue with errors

Hi All, We are planning to migrate from Solaris to AIX, and we have a requirement to move all files modified in last 7 days to AIX. i found many helpful forums on this site but somehow the issue was still not solved: Used the following command from the directory which we want to scan ... (6 Replies)
Discussion started by: nikhil8
6 Replies
LROUND(3)						   BSD Library Functions Manual 						 LROUND(3)

NAME
llround, llroundf, llroundl, lround, lroundf, lroundl -- convert to nearest integral value LIBRARY
Math Library (libm, -lm) SYNOPSIS
#include <math.h> long long llround(double x); long long llroundf(float x); long long llroundl(long double x); long lround(double x); long lroundf(float x); long lroundl(long double x); DESCRIPTION
The lround() function returns the integer nearest to its argument x, rounding away from zero in halfway cases. If the rounded result is too large to be represented as a long value, an invalid exception is raised and the return value is undefined. Otherwise, if x is not an inte- ger, lround() may raise an inexact exception. When the rounded result is representable as a long, the expression lround(x) is equivalent to (long)round(x) (although the former may be more efficient). The llround(), llroundf(), llroundl(), lroundf() and lroundl() functions differ from lround() only in their input and output types. SEE ALSO
lrint(3), math(3), rint(3), round(3) STANDARDS
The llround(), llroundf(), llroundl(), lround(), lroundf(), and lroundl() functions conform to ISO/IEC 9899:1999 (``ISO C99''). HISTORY
The float and double versions of these routines first appeared in FreeBSD 5.4. The long double versions appeared in FreeBSD 6.0. BSD
April 7, 2005 BSD
All times are GMT -4. The time now is 01:41 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy