Sponsored Content
Top Forums UNIX for Beginners Questions & Answers MOTIF PW library for file-search routines ??? Post 303040117 by Sennenmut on Wednesday 23rd of October 2019 10:34:22 AM
Old 10-23-2019
thanks andrew

thanks andrew ,
yes its deprecated. I think i will focus my mind on the main X11 Window style functions and libraries.
The descriptions in one of the books have strange code such like this PW library and for example
<X11/Intrinsic.h> in the header which is also not find by GCC or clang compiler.
However Intrinsics files exit on my computer but not in a context and manner which is described
in this one book programming style.

All is working good. GUIs are opening immediatelly from most examples.
MOTIF is a good thing.
 

10 More Discussions You Might Find Interesting

1. Programming

Problems calling external C routines from PL/SQL

Hi everybody! I'm not familiar with C programming in Unix, but I'm trying to make work an example to execute external procedures (developed in C) from PL/SQL. The example includes .c and .pc source files, which I have compiled succesfully. After that, links the .o files into .so to declare... (0 Replies)
Discussion started by: lwnorowski
0 Replies

2. Programming

system calls vs librery routines

can i know what is the differnece between using librery function and system calls for performing any of the operation like read, write and other operations (1 Reply)
Discussion started by: MKSRaja
1 Replies

3. Programming

binary for 'printf' routines

This is a quick question: is '%b' a valid conversion to use in any of the 'printf' routines for binary data? I did some searching through old posts in this site and found some that said it is, though internet searching outside this site, as well as books I've looked at (both recent and not so... (1 Reply)
Discussion started by: cleopard
1 Replies

4. Shell Programming and Scripting

can we use routines of datastage in unix script

Hi all, My aim is to get the log details of datastage job using unix scipt. we know that DSjob are used to get the log details from datastage universe through the adminstrator.can we call that DSjob rountine in our unix script. Thanks in advance Regards, NimmyRaju:) (0 Replies)
Discussion started by: nimmyraju
0 Replies

5. Solaris

Executable takes indefinite time to search for shared library

Hi, I have an executable that takes indefinitely long time to search for the libsendfile.so in particular solaris machines only. The library is actually in the /lib folder. Where as it works fine on few of the machines, it takes long time in few others. I have checked crle options. Its... (1 Reply)
Discussion started by: kk2202
1 Replies

6. Shell Programming and Scripting

assistance needed to add 2 other routines to my script

Hello guys, In my script, I need to add two other routines where I Manipulate the files with a 'x' The routine looks at CLI named qip-getobjectprof that references a input file named hosts_list.txt Then I use the CLI named qip-setobject to set the orignal name with an 'x'and move the... (3 Replies)
Discussion started by: richsark
3 Replies

7. Solaris

Motif 2.1 migration from Motif 1.2

An application was getting built using Motif 1.2 that used come along Solaris 6 OS for compiling and linking. Application is run using Motif 2.1 on Solaris 10 and it is working fine. Application compilation and linking is working fine on Solaris 10 with Motif 2.1.0 but running the application... (0 Replies)
Discussion started by: shafi2all
0 Replies

8. Shell Programming and Scripting

Please review error routines in my ksh script

The script distributes files from an AIX server using iether ftp or sftp depending on the constraint of the destination server. I am interested in having the error checking routine critically reviewed. I will only include an excerpt from the script concerning error trapping: (where $FTP_OUT is the... (7 Replies)
Discussion started by: peleton
7 Replies

9. AIX

Embedding Runtime Search Path into Library on AIX

My product has 2 libraries say "x & y". x depends on y. During the installation of my products package, user will be prompted for his own location to copy my product libraries. Installation will copy libraries "x & y" and create my product specific ENV variable say "MYPATH" pointing to User... (4 Replies)
Discussion started by: erra_krishna
4 Replies

10. UNIX for Beginners Questions & Answers

Fatal error: 'Xm/Xm.h' file not found , motif installed

Hello, i have installed open-motif -2.3.8_1 X11 Toolkit on freebsd32bit machine. wanna compile a little script. script is ok. already compiled on other machine (linux) the message is as follows cc -o button button.c -lXm -lXt -lX11 button.c:3:10: fatal error: 'Xm/Xm.h' file not found... (5 Replies)
Discussion started by: Sennenmut
5 Replies
CC(1)							      General Commands Manual							     CC(1)

NAME
cc - C compiler SYNOPSIS
cc [-STOUfcimos] [-w[aos]] [-v[n]] [-Dname]* [-Idir]* [-Ldir]* file+ [-lname]* OPTIONS
-D The flag -Dx[=y] defines a macro x with (optional) value y -I -Idir searches dir for include files -L -Ldir searches dir for -lname libraries -O Optimize the code -S Produce an assembly code file, then stop -T The flag -Tdir tells cc and as to use dir for temporary files -U Undefine a macro -E Preprocess to standard output -c Compile only. Do not link -f Link with floating point emulation library -i Use separate I & D space (64K + 64K) ( only) -l The flag -lname causes the library libname.a to be linked -m Remove unnecessary prototypes after preprocessing ( only) -o Put output on file named by next arg -s Strip the symbol-table from executable file -v Verbose; print pass names -vn Verbose; print pass names but do not run them -w Suppress warning messages -ws Suppress strict messages -wa Suppress all warning and strict messages -wo Suppress messages about old-style -.o Do not link the default run-time start-off EXAMPLES
cc -c file.c # Compile file.c cc -DFOO file.c # Treat the symbol FOO as defined cc -wo -o out file.c # Compile old-style code; output to out DESCRIPTION
This is the C compiler. It has eight passes, as follows: Program Input Output Operation performed lib/ncpp prog.c prog.i C preprocessor: #include, #define, #ifdef lib/irrel prog.i prog.i Removal of unnecessary prototypes lib/ncem prog.i prog.k Parsing and semantic analysis lib/nopt prog.k prog.m Optimization of the intermediate code lib/ncg prog.m prog.s Code generation bin/as prog.s prog.o Assembly lib/ld prog.o prog.out Linking lib/cv prog.out a.outConversion to MINIX a.out format In the 68000 versions of MINIX , the preprocessor is not called since the front-end contains the preprocessor. This increases compilation speed. The main program, cc , forks appropriately to call the passes, transmitting flags and arguments. The -v flag causes the passes to be listed as they are called, and the -vn flag causes the passes to be listed but not called. The libraries should be made with aal (which is the same as ar on the 68000 versions), and consist of .o files. The internal order of files inside the library is unimportant, but the order in which the libraries are specified is. When -T is used, the intermediate files end up in the directory specified. Otherwise, /tmp is used. When available memory is very limited (e.g., a 512K machine), it may be necessary to run chmem to reduce the sizes of the compiler passes that do not fit, typically ncem . On the other hand, if the compiler (or, in fact, almost any program) begins acting strange, it is almost always due to its running out of space, either stack space or scratch file space. The relevant pass can be given more stack space using chmem . More space for scratch files can be obtained by removing other files on the device. If the compiler runs out of memory, it may be necessary to use the -m flag. This causes irrel to be run, which removes unnecessary proto- types and thus frees up extra table space within the compiler. Beware, however, that running this pass may cause strictly conforming pro- grams to become non-conforming and vice versa, so you should only run this pass as a last resort. The compiler is derived from the ACK system (Tanenbaum et al., Communications of the ACM, Sept. 1983), not from the AT&T portable C com- piler. It has been shoehorned onto the PC with some loss of performance. SEE ALSO
make(1). CC(1)
All times are GMT -4. The time now is 07:09 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy