Sponsored Content
Full Discussion: Install cobol compiler
Operating Systems Linux Red Hat Install cobol compiler Post 302484474 by verdepollo on Friday 31st of December 2010 09:23:57 AM
Old 12-31-2010
RHEL has yum instead of apt-get.

Code:
yum install open-cobol

 

10 More Discussions You Might Find Interesting

1. Red Hat

Need Help Finding C Compiler on install CDs

I have to install C compiler on Redhat 9. I was told that its on the install CDs however, I cannot find it. Would appreciate any help on this issue. (1 Reply)
Discussion started by: StorageGuy
1 Replies

2. Solaris

Can`t install gcc compiler

Hi, Installed the gcc compiler off the Solaris 9 Companion CD a while back , but needed to delete it due to disk space issues. Now that I have sorted out our root disk space I can`t reinstall the compiler. If I select all the packages off the Development/Languages menu , the install list... (3 Replies)
Discussion started by: markdr011
3 Replies

3. Programming

cobol crn programme run on express cobol as .gnt

can i run .crn programme in express cobol which support to .gnt programme .... Plz tell me solution (2 Replies)
Discussion started by: bibi
2 Replies

4. AIX

How to install gcc compiler on AIX?

I want to install gcc compiler on aix box. $uname -a AIX GTMIT 3 5 000000000000 Can any one help me installing gcc compiler(step by step)either by smit or rpm commands ? What is boot straping ? Its urgent .. Thanks in advance (2 Replies)
Discussion started by: kittu1979
2 Replies

5. UNIX for Dummies Questions & Answers

install C compiler without make

Hi all, I dont have much knowledge about linux, but want to learn. I have installed Plop linux(PLoP - Home) on USB Flashdrive. I want to install gcc compiler to it. The installation of C compiler ask for make command, which is not found in the distribution. When I tried to install gnu make,... (4 Replies)
Discussion started by: johnsmithgr8
4 Replies

6. Shell Programming and Scripting

Calling script from RM cobol and returning value to cobol

Is there a way you can return a value from a script that is called from a rm cobol program... 01 WS-COMD-LINE-PGM X(39) value sh ./getUserId.sh 12345" 01 WS-RETURN-SYS-CODE PIC 9(8). CALL "SYSTEM" USING WS-COMD-LINE-PGM GIVING WS-RETURN-SYS-CODE. ... (1 Reply)
Discussion started by: pavanmp
1 Replies

7. Shell Programming and Scripting

cobol help....compiler key and its usage....

i am having mfcobol old version... which was supplied by my friends....with a compiler key (h/w) having 24 pin male on one side and 24 pin female on the other side....with lable LOPOEK XXXXXXXXXX MICRO FOCUS........ AM USING NORMAL COMMANDS USING .CBL, .OBJ, .LIB FILES TO GET COBOL EXE FILE....... (0 Replies)
Discussion started by: KANNI786
0 Replies

8. AIX

install two different compiler version

Hi all. I have a simple question. There's a way to install under AIX system (5.3) two different compiler version, i.e. ibm xlf fortran 11 and 12? Seems that smitty doesn't allows user to change the default installation path; it only allows you to save the replaced files of the superseded... (1 Reply)
Discussion started by: poldo000
1 Replies

9. Programming

cobol compiler for suse

hi could you please suggest me any cobol compiler for suse linux. any help would me much appreciated .. -- thanks rakesh kumar (7 Replies)
Discussion started by: rakeshkumar
7 Replies

10. OS X (Apple)

How should I install 'make' compiler ?

I need too install GDB in order to debug a program. I need to install GDB through the UNIX command 'make install'. I downloaded a full directory of hundreds of files allowing to get a gdb executable but need a compilation before ... The problem is UNIX can't find 'make' command. I work under... (5 Replies)
Discussion started by: shub22
5 Replies
Module::Install::Can(3) 				User Contributed Perl Documentation				   Module::Install::Can(3)

NAME
Module::Install::Can - Utility functions for capability detection DESCRIPTION
"Module::Install::Can" contains a number of functions for authors to use when creating customised smarter installers. The functions simplify standard tests so that you can express your dependencies and conditions much more simply, and make your installer much easier to maintain. COMMANDS
can_use can_use('Module::Name'); can_use('Module::Name', 1.23); The "can_use" function tests the ability to load a specific named module. Currently it will also actually load the module in the process, although this may change in the future. Takes an optional second param of a version number. The currently installed version of the module will be tested to make sure it is equal to or greater than the specified version. Returns true if the module can be loaded, or false (in both scalar or list context) if not. can_run can_run('cvs'); The "can_run" function tests the ability to run a named command or program on the local system. Returns true if so, or false (both in scalar and list context) if not. can_cc can_cc(); The "can_cc" function tests the ability to locate a functioning C compiler on the local system. Returns true if the C compiler can be found, or false (both in scalar and list context) if not. can_xs can_xs(); The "can_xs" function tests for a functioning C compiler and the correct headers to build XS modules against the current instance of Perl. TO DO
Currently, the use of a "can_foo" command in a single problem domain (for example "can_use") results in the inclusion of additional functionality from different problem domains (for example "can_run"). This module should ultimately be broken up, and the individual functions redestributed to different domain-specific extensions. AUTHORS
Audrey Tang <autrijus@autrijus.org> Adam Kennedy <adamk@cpan.org> SEE ALSO
Module::Install, Class::Inspector COPYRIGHT
Copyright 2006 - 2012 Audrey Tang, Adam Kennedy. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See <http://www.perl.com/perl/misc/Artistic.html> perl v5.16.3 2012-03-01 Module::Install::Can(3)
All times are GMT -4. The time now is 04:31 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy