- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- comprehensive list for HPUX compiler options and L...
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
12-22-2020 09:34 AM
12-22-2020 09:34 AM
comprehensive list for HPUX compiler options and Linux equivalents if possible
I'm researching the meaning of HPUX compiler optins in makefiles - parameters like -DSLXMX_ENABLE and RMC=YES
- the meaning / meanings
- what they "do"
- Linux equivilents?
Thank you in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2020 02:08 PM
12-22-2020 02:08 PM
Re: comprehensive list for HPUX compiler options and Linux equivalents if possible
> I'm researching the meaning of HPUX compiler optins
Why? Do you have an HP-UX system, or are you looking at porting old
code to GNU/Linux, or what? HP-UX version? Which compiler/version? A
Web search should find abundant documentation for a variety of C
compilers which have been used on HP-UX (including gcc).
> [...] -DSLXMX_ENABLE [...]
Same as any other UNIX-like C compiler? "-D<anything>" defines the C
macro "<anything>" (as 1, I'd guess). Look for "SLXMX_ENABLE" in your
code?
> [...] RMC=YES [...]
Where did you find that? With no "-", I doubt that it's a C compiler
option. If it was part of a a "make" command, then it might be
defining a "make" macro ("RMC" to "YES").
> - what they "do"
Apparently, they define macros. With my weak psychic powers, I have
no idea what those macros might do in your (invisible) code.
> - Linux equivilents?
I'd guess no difference.
It might help some if you provided even a little context -- actual
commands where these things appear, why you're doing this "research",
and so on. What is the actual problem which you are trying to solve?
The fact that you found a "-D" option puzzling suggests that you might
need to know more than you do before attempting this task (whatever it
is).