/usr/bin/sh xlc not found

 
Thread Tools Search this Thread
Top Forums Programming Open Source /usr/bin/sh xlc not found
# 1  
Old 03-26-2015
the link you provided is gcc for AIX 7.1. The last version for AIX 5.3 is 4.8.2, e.g.:
http://www.oss4aix.org/download/RPMS...aix5.3.ppc.rpm

if you have to compile only one program you can download 60-day trial from IBM:
Trial download: XL C/C++ 13.1

if the link doesn't work, just go to ibm.com, choose Support & Downloads -> Trial & Demos -> All Software -> X -> IBM XL C/C++
This User Gave Thanks to agent.kgb For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. BSD

FreeBSD: /usr/bin/ld not looking in /usr/local/lib

I'm not sure if this is the default behavior for the ld command, but it does not seem to be looking in /usr/local/lib for shared libraries. I was trying to compile the latest version of Kanatest from svn. The autorgen.sh script seems to exit without too much trouble: $ ./autogen.sh checking... (2 Replies)
Discussion started by: AntumDeluge
2 Replies

2. Solaris

How to link sed from /usr/bin/sed to /usr/local/bin/sed?

Hi Guys, OS:- Solaris 10 64Bit I have a small query. On one server a user is facing sed command issue. He gets error regarding sed for this location /users/hoy/2999/batch5/bin/internal.sh: /usr/local/bin/sed: not found How ever the sed is actually present at this location on server:-... (13 Replies)
Discussion started by: manalisharmabe
13 Replies

3. AIX

/usr/local/bin/cvs: Not found

I can able to access /usr/local/bin/cvs in the terminal (AIX 6.1 Box). but i am getting the "/usr/local/bin/cvs: Not found " when i call it from the script. please some one assist me what maybe problem (6 Replies)
Discussion started by: hifirockz
6 Replies

4. Solaris

What is the difference between xpg4/bin and usr/bin?

Hi Experts, I found that the same commands(sort, du, df, find, grep etc.) exists in both dir. What is the difference to use them? i.e: to use xpg4/bin/grep and usr/bin/grep My OS version is SunOS 5.10 Regards, Saps (7 Replies)
Discussion started by: saps19
7 Replies

5. OS X (Apple)

When to use /Users/m/bin instead of /usr/local/bin (& whats the diff?)?

Q1. I understand that /usr/local/bin means I can install/uninstall stuff in here and have any chance of messing up my original system files or effecting any other users. I created this directory myself. But what about the directory I didn't create, namely /Users/m/bin? How is that directory... (1 Reply)
Discussion started by: michellepace
1 Replies

6. UNIX for Dummies Questions & Answers

Alias /usr/bin to /bin in profile

Hi! All the basic linux commands, ie. echo, find, etc, are located in /bin. I have a couple of programs that have these commands pointed towards /usr/bin, ie, /usr/bin/echo (even though the actual 'echo' command is in /bin). How can I alias or redirect or link the /usr/bin to /bin just for this... (6 Replies)
Discussion started by: dancerat
6 Replies

7. Solaris

How do I link ld in /usr/ucb/ to /usr/ccs/bin?

Hi all, below is the problem details: ora10g@CNORACLE1>which ld /usr/ucb/ld ora10g@CNORACLE1>cd /usr/ccs/bin ora10g@CNORACLE1>ln -s /usr/ucb/ld ld ln: cannot create ld: File exists ora10g@CNORACLE1> how to link it to /usr/ccs/bin? (6 Replies)
Discussion started by: SmartAntz
6 Replies

8. UNIX for Dummies Questions & Answers

Difference between /bin, /usr/bin, /sbin ?

Hi All, Can somebody tell me the difference between /bin, /usr/bin, /sbin ? Thanx in advance, Saneesh Joseph (3 Replies)
Discussion started by: saneeshjose
3 Replies

9. UNIX for Dummies Questions & Answers

/bin/sh: /usr/bin/vi: No such file or directory when doing crontab

I just set up an ftp server with Red Hat 5.2. I am doing the work, I'm baby stepping, but it seems like every step I get stuck. Currently, I'm trying to set up a crontab job, but I'm getting the following message: /bin/sh: /usr/bin/vi: No such file or directory. I see that vi exists in /bin/vi,... (3 Replies)
Discussion started by: kwalter
3 Replies
Login or Register to Ask a Question
krb5-config(1)							   User Commands						    krb5-config(1)

NAME
krb5-config - link against the installed Kerberos libraries SYNOPSIS
krb5-config [--all | --cflags | --exec-prefix | --help | --libs library | --prefix | --vendor | --version] DESCRIPTION
krb5-config identifies and displays the special flags that are needed to compile and link programs against the installed Kerberos libraries. OPTIONS
The following options are supported: --all Displays the version, vendor, prefix and exec-prefix. --cflags Displays the compiler flags with which Kerberos was built. --exec-prefix Displays the exec-prefix with which Kerberos was built. --help Displays the usage message. This is the default. --libs library Displays compiler options required to link with library. The following library values are supported: krb5 Kerberos 5 application --prefix Displays the prefix with which Kerberos was built. --vendor Displays the vendor of the installed Kerberos implementation. --version Displays the version of the installed Kerberos implementation. EXAMPLES
Example 1 Using the --cflags Option The following example displays the C compiler flags needed to use libkrb5(3LIB): % krb5-config --cflags -I/usr/include/kerberosv5 Example 2 Using the--libs Option The following example shows the C compiler options needed to link against libkrb5(3LIB): % krb5-config --libs -L/usr/lib -R/usr/lib -lkrb5 EXIT STATUS
The following exit values are returned: 0 Successful completion. >0 An error occurred. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWkrbu | +-----------------------------+-----------------------------+ |Interface Stability |External | +-----------------------------+-----------------------------+ SEE ALSO
cc(1B), libgss(3LIB), libkrb5(3LIB), attributes(5) SunOS 5.11 18 Apr 2006 krb5-config(1)