- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ACC Compilers
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
08-23-2000 07:31 AM
08-23-2000 07:31 AM
ACC Compilers
Thanks
Sailesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2000 07:34 AM
08-23-2000 07:34 AM
Re: ACC Compilers
Have you a specific scenario or Qu ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2000 07:36 AM
08-23-2000 07:36 AM
Re: ACC Compilers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2000 07:37 AM
08-23-2000 07:37 AM
Re: ACC Compilers
As of aCC 01.21 (May 1999 release) there is a 'floating installation'
that does allow you to run more than one version of HP aC++ on the same
system, at the same time. The 01.21 release notes contain this
information.
Floating Installation:
As of HP aC++ A.01.12 (for HP-UX 10.x), HP aC++ A.03.10 (for HP-UX 11.x),
and subsequent versions, allow you to install more than one version of
the HP aC++ compiler on one system, at the same time. The floating
installation feature allows you to install the compiler in any location.
You can install as many compiler versions as required, depending on your
system's resources.
By default, HP aC++ is installed under the /opt/aCC directory. In prior
releases, the compiler driver (aCC) looked for related files in /opt/aCC
subdirectories. This prevented the installation of more than one version
of HP aC++ on the same system at the same time.
Note that the floating installation only affects the /opt/aCC files. No
matter which HP aC++ driver you are using, the compiler still uses the
libraries, linker, and other files located in /usr/lib and /usr/ccs.
Note: You can use the __HP_aCC predefined macro to determine which
version is being run.
Caution: The floating installation is not intended for use with
the following:
CCROOTDIR environment variable
-tc,name command line option
Setting Up Floating Installation
You may want to install the most recent compiler version and keep the
prior version on one system. If there are problems with the most recent
version, it is easy to switch to the prior version. The following example
shows how to setup the floating installation feature for this purpose.
Assume that your system will have two versions of the compiler, both
floating install enabled. In this case, A.03.10 is the prior version,
and A.03.13 is the more recent version.
1. Copy the prior version to another directory:
cp -rp /opt/aCC /opt/aCC.03.10
2. Use swinstall to install the new (in this case, A.03.13) version.
3. Invoke the A.03.10 compiler (with its absolute path):
/opt/aCC.03.10/bin/aCC app.C
Note: Alternatively, you could change your PATH environment
variable or setup an alias for the absolute path.
4. Invoke the A.03.13 compiler:
aCC app.C
You can also find the floating installation instructions in the following
sources:
A. Access the HP aC++ Online Programmers Guide by invoking
'aCC +help' on your system.
--OR--
B. You can find the instructions on the web, along with other
interesting C++ information:
http://www.hp.com/go/c++
Once you access the site:
1. Select the 'Look at the Documentation' link.
2. Select the 'A.01.21 HTML' link.
3. Select the 'What's New' link (top of right-hand column).
4. Scroll down the page and select the "Floating installation'
link.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2000 09:13 AM
08-23-2000 09:13 AM
Re: ACC Compilers
What about the runtime libraries, there are about 8 runtime libraries under /usr/lib directory ? Would the latest runtime libraries for 1.21 be backward compatible with 1.09 and 1.21.
Sailesh