Page 1 of 2

Community Licence - Where is the COBOL compiler?

Posted: Sat Mar 30, 2024 5:26 am
by naiac
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?

Re: Community Licence - Where is the COBOL compiler?

Posted: Sat Mar 30, 2024 8:21 am
by arne_v
Likely.

$ dir sys$system:cobol.exe
$ dir sys$system:basic.exe

will confirm.

Re: Community Licence - Where is the COBOL compiler?

Posted: Sat Mar 30, 2024 10:53 am
by cct
Basic and Cobol are only at the stage of field test release, so I imagine you will not get them until next year

Re: Community Licence - Where is the COBOL compiler?

Posted: Sat Mar 30, 2024 12:08 pm
by naiac
arne_v wrote:
Sat Mar 30, 2024 8:21 am
Likely.

$ dir sys$system:cobol.exe
$ dir sys$system:basic.exe

will confirm.
That gives %DIRECT-W-NOFILES, no files found

So I guess it's more likely what cct posted.
cct wrote:
Sat Mar 30, 2024 10:53 am
Basic and Cobol are only at the stage of field test release, so I imagine you will not get them until next year
Thanks. That would explain. Strange though that the licence is there for something that it isn't there :)

Re: Community Licence - Where is the COBOL compiler?

Posted: Sat Mar 30, 2024 2:20 pm
by cct
Perhaps if you are lucky they will give you acces to the portal so you can get the install files!

Re: Community Licence - Where is the COBOL compiler?

Posted: Sat Mar 30, 2024 4:26 pm
by arne_v
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?

Posted: Tue Apr 02, 2024 8:10 am
by jreagan
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.

Re: Community Licence - Where is the COBOL compiler?

Posted: Tue Apr 02, 2024 5:59 pm
by soutbarr
We are missing Pascal, Bliss, and x86ASM in addition to COBOL and Basic

Re: Community Licence - Where is the COBOL compiler?

Posted: Fri Apr 19, 2024 12:13 pm
by sthomas
soutbarr wrote:
Tue Apr 02, 2024 5:59 pm
We are missing Pascal, Bliss, and x86ASM in addition to COBOL and Basic
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!
$

Re: Community Licence - Where is the COBOL compiler?

Posted: Fri Apr 19, 2024 2:52 pm
by sms

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