Sponsored Content
Top Forums Programming Not able to compile C program on z/OS (USS) Post 302532263 by Corona688 on Monday 20th of June 2011 11:30:14 AM
Old 06-20-2011
Make sure you have all the right header files.

z/OS V1R10 information center
This User Gave Thanks to Corona688 For This Post:
 

10 More Discussions You Might Find Interesting

1. Programming

how to compile a program

how do i go about compiling a simple hello world script in mandrake linux? this is something i have had no luck in finding on the main site, please help? thank you (2 Replies)
Discussion started by: CmpKillr
2 Replies

2. Programming

How to compile a c program by using gcc

Hi all, Yeasterday I try to compile c program by using cygwin. I just find an errors the fist one is concerinig about the end of the line. To summit my Assignment which is the day after tommorow I have to compile my c program by using just gcc. If any one know what do I have to... (5 Replies)
Discussion started by: Bell
5 Replies

3. Programming

how to compile a program statically

how can i do static compilation in cc and -lldap i have system defined and user defined header file. Can any one suggest any site where from i can get some information about static and dynamic compilation. Thankx (1 Reply)
Discussion started by: bhakti
1 Replies

4. BSD

How to compile a c program in freeBSD

Hi , I have freeBSD installed. I need to compile a c program which has embedded informix sql statement in it. Can you please help me to to do the same. I need to know what I should I do to make BSD compatable to compile the c program ? Thanks in advance Jisha (3 Replies)
Discussion started by: jisha
3 Replies

5. Programming

compile a c program

I am trying to compile a c program on AIX 5.3L 64-bit unix. I have used this program in the past and it works. Does anybody know what this error means? /usr/local/bin> gcc get_epoch_secs.c get_epoch_secs gcc: get_epoch_secs: No such file or directory get_epoch_secs.c: In function... (8 Replies)
Discussion started by: djehresmann
8 Replies

6. Solaris

How do I compile a 64-bit program on SPARC??

Hi, wcslen(), strlen() returns size_t. On 64-bit platform i want to use int like str length is 10. int len = wcslen(str); On 64-bit what should I need to do if i wants the length in int. Because getting error as "Conversion of 64 bit type value to "int" causes truncation". if i... (17 Replies)
Discussion started by: amit_27
17 Replies

7. Programming

Compile c program on Sun Solaris OS

Can anyone tell me how to compile a c programs on SunSolaris OS 5.1 Version as gcc and cc are not working Thanks!!!! (4 Replies)
Discussion started by: shivu
4 Replies

8. UNIX for Advanced & Expert Users

compile a c program in a encrypted way

Hi Guys, I wonder I had have a look to the cc compile options but I could be missing one but basically I'm compliling a c program where I will storing a command to connect to a database and also userid and password. The issue is that after the module is generated using a command like strings I... (14 Replies)
Discussion started by: arizah
14 Replies

9. Programming

Can someone compile and run a program on AIX 6.1 please?

Hi, I have a program which collects performance data from AIX. It works fine on older releases (< 5.3) but I fail to get data from /proc. I would really appreciate it if someone could compile (using ANSI compat C compiler), run the program (for 30-40 minutes) on AIX 6.1 and send me the... (2 Replies)
Discussion started by: StuBob
2 Replies

10. UNIX and Linux Applications

Cannot compile/install gnu program

Hello, I'm trying to install ansifilter which is a program that translates ansi text to HTML. The idea is to install it on AIX 7.1 but is failing. All de appropriate gcc libraries and requirements for this software were installed successfully, but when I do the gmake I get the following... (4 Replies)
Discussion started by: bazajav
4 Replies
ALEF(1) 						      General Commands Manual							   ALEF(1)

NAME
8al, kal, val - ALEF compilers SYNOPSIS
8al [ option ... ] [ file ... ] kal [ option ... ] [ file ... ] val [ option ... ] [ file ... ] DESCRIPTION
ALEF is a concurrent programming language with a syntax like C's. Kal, val and 8al compile the named ALEF source files into SPARC, MIPS and Intel 386 object files. Source files have the extension .l. The ALEF source is passed through cpp(1) prior to compilation. Object files have the normal extension for each architecture: .k for SPARC, .v for MIPS and .8 for 386. Up to $NPROC files will be compiled in parallel. The compiler options are: -o obj Place output in file obj (ignored if there is more than one input file). Default is to take the last element of the input pathname, strip any trailing .l, and append the object file suffix. -a Write no object file, but produce an acid(1) program on standard output, comprising a set of type declarations and functions to print those types. -aa Like -a but suppress output for types and functions declared in header files. -w Print warning messages for non fatal errors. -N Do not run the code optimizer. -c Do not compile code for check statements. -S Produce assembly language instead of object code as output. By default, output goes to a file named by the last element of the input pathname with .l replaced by .s. -Dname=def -Dname Define the name to the preprocessor, as if by If no definition is given, the name is defined as -Idir files whose names do not begin with are always sought first in the directory of the file argument, then in directories named in -I options, then in /sys/include/alef, and finally in /$objtype/include/alef. -dc Produce various forms of debugging. The character c is an alphabetic. The compiler recognizes several #pragma directives. The first, #pragma lib, is the same as in 2c(1). The others have effect only when profiling is turned on by the -p option of the loader (see 2l(1)). The directive #pragma noprofile disables the generation of profiling code for subsequently declared functions; #pragma profile enables it again. The main use of these directives is to avoid the profiling confusion caused by functions that do not explicitly return, such as the task-switching functions in the run-time system. Nonetheless, without support for profiling multi-process programs, it remains difficult to profile Alef programs. EXAMPLE
To compile and run on a SPARC the ALEF program in the current directory: kal -w *.l kl *.k k.out FILES
/sys/include/alef directory for #include files. /$objtype/lib/alef directory for ALEF libraries SOURCE
/sys/src/alef/port machine-independent part /sys/src/alef/8, etc. machine-dependent parts SEE ALSO
acid(1), 2a(1), 2l(1), mk(1), nm(1), db(1) Phil Winterbottom, ``Alef Reference Manual'', and Bob Flandrena, ``Alef User's Guide''. ALEF(1)
All times are GMT -4. The time now is 11:05 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy