- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: gcc on UX 11
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2000 06:04 AM
02-22-2000 06:04 AM
gcc on UX 11
try to compile, it says:
campbell $/opt/gcc/bin/gcc -o hello hello.c
as: "/var/tmp/cc8bB81c.s", line 22: error 1052: Directive name not recognized -
NSUBSPA
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2000 10:06 AM
02-22-2000 10:06 AM
Re: gcc on UX 11
Archive? If so, be sure that /opt/binutils is in your path when using gcc
hth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2000 06:07 AM
02-23-2000 06:07 AM
Re: gcc on UX 11
ftp://ftp.gnu.org/pub/gnu/gcc/gcc-2.95.tar.gz
You will also want to use the GNU version of make :
ftp://ftp.gnu.org/pub/gnu/make/make-3.78.1.tar.gz
After configuring, use 'make bootstrap', this will cause the entire core of the
package to be compiled (which includes binutils and other dependancies).
After it goes through the motions of compiling use 'make install'.
A final note, your PATH is very important .. depending on which directory comes
first will determin which CC or assembler is used in conjunction. I usually
set /usr/local/bin first in /etc/PATH so things dont get confused.
Cheers.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2000 09:45 AM
03-22-2000 09:45 AM
Re: gcc on UX 11
Did this ever get resolved? Please email me...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2000 10:18 AM
03-22-2000 10:18 AM
Re: gcc on UX 11
the problem.
binutils provides an "as" that is in /opt/binutils/bin/as that is sym refd by
/opt/gcc/lib/gcc-lib/hppa1.1-hp-hpux10.20/2.95.2/as
The /usr/ccs/bin/as that comes with HPUX is braindamaged? just like the default
cc on HPUX.
You may need to make sure your PATH points to the correct "as".
Thanks to those who posted the hints...