Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

omnicpp(1) [debian man page]

OMNICPP(1)						      General Commands Manual							OMNICPP(1)

NAME
omnicpp - OmniORB cpp preprocessor for IDL compiler SYNOPSIS
omnicpp [options] DESCRIPTION
This manual page documents briefly the omnicpp command. omniidl is omniORBs IDL compiler and uses omnicpp as it's C preprocessor. omnicpp is really just the GNU C preprocessor under a different name. Normally you should not need to invoke this directly but should use omniidl instead. OPTIONS
As this is just the GNU C preprocessor cpp you can see that program for the full options. Normally you should not be invoking this directly but should use omniidl instead. The options listed here should really be given to omniidl, but they are passed straight to omnicpp. -D name Define name for the preprocessor. -U name Undefine name for the preprocessor. -I dir Include dir in the preprocessor search path. Note that the current directory is not on the include search path by default. Use -I. for that. SEE ALSO
omniidl(1). The programs are documented fully by the HTML documentation in the omniorb4-doc package. AUTHOR
omnicpp was written by Duncan Grisby <duncan@grisby.org> This manual page was written by Floris Bruynooghe <floris.bruynooghe@gmail.com>, for the Debian project (but may be used by others). 30 Apr 2007 OMNICPP(1)

Check Out this Related Man Page

OMNIMAPPER(8)						      System Manager's Manual						     OMNIMAPPER(8)

NAME
omniMapper - Simple proxy for CORBA naming service from omniORB SYNOPSIS
omniMapper [options] DESCRIPTION
This manual page documents briefly the omniMapper command. omniMapper is a simple daemon which listens on port 2809 (or any other port) and redirects IIOP requets for configured object keys to asso- ciated persistent IORs. It can be used to make a naming service (even an old non-INS aware version of omniNames or other ORB's naming ser- vice) appear on port 2809 with the object key NameService. The same goes for any other service you may wish to specify, such as an inter- ace repository. OPTIONS
A summary of options is included below. For a complete description, see the HTML pages included in the omniorb4-doc package. -port port This allows you to choose a port other than 2809 to listen on. -config config_file This specifies a location for the configuration file. The default name is /etc/omniMapper.cfg. -v omniMapper does not normally print anything; this option makes it verbose so it prints configuration information and a record of the redirections it makes to standard output. CONFIGURATION FILE
The configuration file is very simple. Each line contains a string to be used as an object key, some white space and an IOR (or any valid URI) that it will redirect that object key to. Comments should be prefixed with a # character. For example: # Example omniMapper.cfg NameService IOR:000f... InterfaceRepository IOR:0100... SEE ALSO
omniNames(8). The programs are documented fully by the HTML documentation in the omniorb4-doc package. AUTHOR
omniMapper was written by Duncan Grisby <duncan@grisby.org> This manual page was written by Floris Bruynooghe <floris.bruynooghe@gmail.com>, for the Debian project (but may be used by others). 30 Apr 2007 OMNIMAPPER(8)
Man Page

4 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

c++ home directory??

when i compile *.cpp files the compiler didn't find the non standart includes.If i have to put the full path of the includet files where shall i begin from root dirctory or i heve to put includet files in cpp home directory??? can i compile java files in unix(linux mandrake 7) if yes haw... (3 Replies)
Discussion started by: user666
3 Replies

2. Programming

Help with Compiling large source file using g++

HI All, I m compiling a 27 MB cpp file and compiler crashes. My enviroment : RH 9, compiler g++ how i m compiling g++ -fPIC -DWITH_OPENSSL -DWITH_COOKIES -c soapC.cpp it took almost 30 -32 to throw error like report bug etc. I will post the same error, but if can any body tell how to... (2 Replies)
Discussion started by: helpmeforlinux
2 Replies

3. Programming

Preprocessor __FILE__ for Debugging

Hi, Just wondering if it is possible to trim the file path output by __FILE__ preprocessor in my debugging line. Let's say my main.cpp file is found in C:\User\MyName\SystemA\Mod1\SubMod2\Test\main.cpp for __FILE__, I just want the filename - main.cpp to be printed, instead of the entire... (2 Replies)
Discussion started by: tanlccc
2 Replies

4. Programming

Use #if not defined with OR boolean logic in preprocessor directives

I am currently using Linux CentOS and programming in FORTRAN 90 using Portland 7.1 compiler. I am able to set in the preprocessor directives a flag called TEST. when I go to use logic in my code i can write #ifdef TEST execute something #endif Furthermore, if I want to negate the... (2 Replies)
Discussion started by: prodigious8
2 Replies