Operating System - HP-UX
1748270 Members
3792 Online
108760 Solutions
New Discussion юеВ

Re: HP C/aC++ Developer's Bundle

 
SOLVED
Go to solution
mjos
Super Advisor

HP C/aC++ Developer's Bundle

Hi,
I need help in how to check the current status of HP C/aC++ Developer's Bundle for Evaluation which is installed on the server. Current status means - the lic info, when will the evaluation period expires....

Thanks in advance
4 REPLIES 4
Dennis Handly
Acclaimed Contributor
Solution

Re: HP C/aC++ Developer's Bundle

export __COMPILER_DEMO_DAYS_TO_WARN=1000
Then compile.
mjos
Super Advisor

Re: HP C/aC++ Developer's Bundle

Thanks Dennis, I dont know how to compile. It was a request from a development team to install this software. I just want to check the status by running the command.

# /opt/aCC/bin/aCC -V
aCC: HP C/aC++ B3910B A.06.20 [May 13 2008]

I ran the above command & it shows me a data of May 13 2008. While I had installed this software today along with the license codeword.
Dennis Handly
Acclaimed Contributor

Re: HP C/aC++ Developer's Bundle

>I don't know how to compile. It was a request from a development team to install this software.

You need to compile something with that variable to get the expiration date. Have your development team try it. Or you could simply do:
touch empty.c
export __COMPILER_DEMO_DAYS_TO_WARN=1000
cc -c empty.c

>aCC: HP C/aC++ B3910B A.06.20 [May 13 2008]
>I ran the above command & it shows me a date of May 13 2008. While I had installed this software today along with the license codeword.

That's the date we made the product. If you got your license today, I think you have 60 days.
mjos
Super Advisor

Re: HP C/aC++ Developer's Bundle

Thanks a lot Dennis, Appreciate your help.