Which version of "libiconv" is libiconv.so.2 in?


 
Thread Tools Search this Thread
Operating Systems Solaris Which version of "libiconv" is libiconv.so.2 in?
# 1  
Old 09-11-2011
Which version of "libiconv" is libiconv.so.2 in?

Hi All, I am getting this in a compile error:

>gcc 1.c
ld.so.1: gcc: fatal: libiconv.so.2: open failed: No such file or directory Killed

I know this lib is in libiconv, but NONE of the below ones have that particular version in it:
Does anyonw know exatly where it is at? maybe 1.7? 1.6? but not on sunfreeware....?


libiconv-1.8-sol10-sparc-local.gz 17-May-2008 15:51 2.2M
libiconv-1.9.2-sol10-sparc-local.gz 17-May-2008 15:51 1.4M
libiconv-1.11-sol10-sparc-local.gz 17-May-2008 15:51 1.4M
libiconv-1.13.1-sol10-sparc-local.gz 12-Jan-2010 14:29 1.4M
libiconv-1.14-sol10-sparc-local.gz 08-Aug-2011 05:22 1.5M


Also, AFTER I bring it in, how do I include the lib path as a gcc flag? is it with a -R or -L or both?
Thanks

---------- Post updated at 10:08 PM ---------- Previous update was at 06:53 PM ----------

Problem solved! please refer to the last page (3rd page) solution on other post: Need gcc binary for a SPARC machine
Thanks.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Bash script - Print an ascii file using specific font "Latin Modern Mono 12" "regular" "9"

Hello. System : opensuse leap 42.3 I have a bash script that build a text file. I would like the last command doing : print_cmd -o page-left=43 -o page-right=22 -o page-top=28 -o page-bottom=43 -o font=LatinModernMono12:regular:9 some_file.txt where : print_cmd ::= some printing... (1 Reply)
Discussion started by: jcdole
1 Replies

2. UNIX for Dummies Questions & Answers

Using "mailx" command to read "to" and "cc" email addreses from input file

How to use "mailx" command to do e-mail reading the input file containing email address, where column 1 has name and column 2 containing “To” e-mail address and column 3 contains “cc” e-mail address to include with same email. Sample input file, email.txt Below is an sample code where... (2 Replies)
Discussion started by: asjaiswal
2 Replies

3. UNIX for Dummies Questions & Answers

What is the significance of sh -s in ssh -qtt ${user}@${host} "sh -s "${version}"" < test.sh?

Please can you help me understand the significance of providing arguments under sh -s in > ssh -qtt ${user}@${host} "sh -s "${version}"" < test.sh (4 Replies)
Discussion started by: Sree10
4 Replies

4. Solaris

Need to install /usr/lib/libiconv.so.2 Solaris Sparc 64 bit package

Hi, Can anyone help me out in getting download the below required package for Solaris 10 SPARC 64-bit machine. Thanks in advance. (3 Replies)
Discussion started by: prash358
3 Replies

5. UNIX for Dummies Questions & Answers

Cross-compiling libiconv for uclinux

Hi everyone, I want to cross-compile libiconv for uclinux to create a static library. I use the following command : ./configure --enable-static --disable-shared --build=i686-pc-linux-gnu --host=nios2-unknown-linux-gnu --prefix=/home/captain/Programs/nios2-linux/uClinux-dist/staging/usr... (2 Replies)
Discussion started by: moganesh
2 Replies

6. Shell Programming and Scripting

awk command to replace ";" with "|" and ""|" at diferent places in line of file

Hi, I have line in input file as below: 3G_CENTRAL;INDONESIA_(M)_TELKOMSEL;SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL My expected output for line in the file must be : "1-Radon1-cMOC_deg"|"LDIndex"|"3G_CENTRAL|INDONESIA_(M)_TELKOMSEL"|LAST|"SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL" Can someone... (7 Replies)
Discussion started by: shis100
7 Replies

7. Shell Programming and Scripting

libiconv-1.13.1 error

I try to install: libiconv-1.13.1 on AIX 5 After successful ./confugure I get an following error : 0/4.0.0/../../..:/usr/lib:/lib ld: 0711-317 ERROR: Undefined symbol: .libiconv ld: 0711-317 ERROR: Undefined symbol: .libiconvctl ld: 0711-317 ERROR: Undefined symbol: .libiconvlist ld:... (0 Replies)
Discussion started by: alwer
0 Replies

8. AIX

"pconsole" and "esaadmin" on AIX version 6

Anyone know what is the function of user "pconsole" and "esaadmin" on AIX version 6? (1 Reply)
Discussion started by: ebab3
1 Replies

9. UNIX for Dummies Questions & Answers

Explain the line "mn_code=`env|grep "..mn"|awk -F"=" '{print $2}'`"

Hi Friends, Can any of you explain me about the below line of code? mn_code=`env|grep "..mn"|awk -F"=" '{print $2}'` Im not able to understand, what exactly it is doing :confused: Any help would be useful for me. Lokesha (4 Replies)
Discussion started by: Lokesha
4 Replies
Login or Register to Ask a Question
__BUILTIN_CONSTANT_P(3) 				   BSD Library Functions Manual 				   __BUILTIN_CONSTANT_P(3)

NAME
__builtin_constant_p -- GNU extension to determine compile time constants SYNOPSIS
int __builtin_constant_p(value); DESCRIPTION
The __builtin_constant_p() is a GNU extension for determining whether a value is known to be constant at compile time. The function is closely related to the concept of ``constant folding'' used by modern optimizing compilers. If the value is known to be a compile-time constant, a value 1 is returned. If __builtin_constant_p() returns 0, the value is not a compile- time constant in the sense that gcc(1) was unable to determine whether the value is constant or not. EXAMPLES
A typical example of the use of __builtin_constant_p() involves a situation where it may be desirable to fold the computation if it involves a constant, but a function call is needed otherwise. For instance, bswap16(3) is defined in NetBSD as: #define bswap16(x) (__builtin_constant_p((x)) ? __byte_swap_u16_constant(x) : __BYTE_SWAP_U16_VARIABLE(x)) SEE ALSO
gcc(1), __builtin_object_size(3), __builtin_return_address(3) CAVEATS
This is a non-standard, compiler-specific extension. BSD
December 19, 2010 BSD