Community Licence - Where is the COBOL compiler?
Community Licence - Where is the COBOL compiler?
I'm totally new to OpenVMS, and I'm of the unlucky ones that got OpenVMS x86_64 in the form of a demo image file.
When I do SHOW LICENSES I see COBOL among a few others. But when I try to invoke the compiler I get an error. If I do PRODUCT SHOW OBJECT /PRODUCT=COBOL I get 0 files found. SAme for BASIC.
Does this mean the COBOL compiler is not installed?
When I do SHOW LICENSES I see COBOL among a few others. But when I try to invoke the compiler I get an error. If I do PRODUCT SHOW OBJECT /PRODUCT=COBOL I get 0 files found. SAme for BASIC.
Does this mean the COBOL compiler is not installed?
-
- Senior Member
- Posts: 531
- Joined: Fri Apr 17, 2020 7:31 pm
- Reputation: 0
- Location: Rhode Island, USA
- Status: Offline
- Contact:
Re: Community Licence - Where is the COBOL compiler?
Likely.
$ dir sys$system:cobol.exe
$ dir sys$system:basic.exe
will confirm.
$ dir sys$system:cobol.exe
$ dir sys$system:basic.exe
will confirm.
-
- Master
- Posts: 216
- Joined: Sat Aug 15, 2020 9:00 am
- Reputation: 0
- Location: Cambridge, UK
- Status: Offline
Re: Community Licence - Where is the COBOL compiler?
Basic and Cobol are only at the stage of field test release, so I imagine you will not get them until next year
Chris Townley
VMS Ambassador
VMS Ambassador
Re: Community Licence - Where is the COBOL compiler?
That gives %DIRECT-W-NOFILES, no files found
So I guess it's more likely what cct posted.
Thanks. That would explain. Strange though that the licence is there for something that it isn't there
-
- Master
- Posts: 216
- Joined: Sat Aug 15, 2020 9:00 am
- Reputation: 0
- Location: Cambridge, UK
- Status: Offline
Re: Community Licence - Where is the COBOL compiler?
Perhaps if you are lucky they will give you acces to the portal so you can get the install files!
Chris Townley
VMS Ambassador
VMS Ambassador
-
- Senior Member
- Posts: 531
- Joined: Fri Apr 17, 2020 7:31 pm
- Reputation: 0
- Location: Rhode Island, USA
- Status: Offline
- Contact:
Re: Community Licence - Where is the COBOL compiler?
I believe that the Cobol V3.2 released March 22nd is a release version not a field test version.
Re: Community Licence - Where is the COBOL compiler?
That is correct. Other than BASIC, all the other compilers have real releases. I'll guess the vmdk was assembled prior to the release of COBOL.
-
- Active Contributor
- Posts: 40
- Joined: Wed Mar 13, 2024 4:45 pm
- Reputation: 1
- Status: Offline
Re: Community Licence - Where is the COBOL compiler?
We are missing Pascal, Bliss, and x86ASM in addition to COBOL and Basic
Re: Community Licence - Where is the COBOL compiler?
Pascal seems ok on mine:
Directory SYS$SYSROOT:[SYSMGR.PROG]
hello.EXE;1 16 19-APR-2024 16:09:53.12 [SYSTEM] (RWED,RWED,RE,)
hello.OBJ;1 8 19-APR-2024 16:09:45.97 [SYSTEM] (RWD,RWD,RWD,RWD)
hello.pas;4 1 19-APR-2024 16:09:44.29 [SYSTEM] (RWED,RWED,RE,)
Total of 3 files, 25 blocks.
$ type hello.pas
program hello(output);
begin
writeln("hello world!\n");
end.
$ run hello
hello world!
$
Last edited by sthomas on Fri Apr 19, 2024 12:18 pm, edited 1 time in total.
Re: Community Licence - Where is the COBOL compiler?
Code: Select all
> We are missing Pascal, [...]
As they said in elementary school since at least a century ago (and
for very good reason), "Show your work!"
Your conclusion might be interesting, or even valid, but knowing how
you reached it can be critical in analyzing the problem.
In this case, for example, the following two commands might lead to
different conclusions about Pascal (one more valid than the other):
product show product pascal
pascal /version
https://forum.vmssoftware.com/viewtopic.php?f=2&t=8860&start=10#p20875