autotools-idl 1.2 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News autotools-idl 1.2 (Default branch)
# 1  
Old 01-22-2009
autotools-idl 1.2 (Default branch)

autotools-idl is a patch for automake and some autoconf scripts that adds support for IDL and C++ ORBs. It tries to provide full support for compiling IDL files to C++ stubs and skeletons. The autoconf scripts provide unified detection of different C++ ORBs. License: GNU General Public License (GPL) Changes:
A feature to customize the names of the generated source files was added. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Programming

Localization and Autotools

Hi All, I'm looking to get some some insight on how localization works for programs that come with Autotool support. I do understand the whole cycle by using the "gettext" tools, but if its a autotools/autoconf program there is more to do to get things going. I have searched but didnt found... (2 Replies)
Discussion started by: slumber
2 Replies

2. UNIX for Dummies Questions & Answers

Files into IDL directories

Ok so ive downloaded two files, and i need to save them into a directory that can be read in IDL. Can someone please remind me how to do this, like post the code that i need please? Many thanks (0 Replies)
Discussion started by: Benji.
0 Replies

3. Programming

spectra flux-calibration using IDL

Hi, I am searching the web for documentations with tutorials for spectra flux calibration using IDL, does anyone know anything that can help me? Please help :D ---------- Post updated 07-11-09 at 05:38 AM ---------- Previous update was 07-10-09 at 10:46 AM ---------- Does the question make... (0 Replies)
Discussion started by: cosmologist
0 Replies

4. Shell Programming and Scripting

IDL job doesn't work from crontab

I have made a script to execute an IDL routine with the purpose to plot data on a fixed time. The problem is that when I include this script in the crontab to run it every night, the IDL part doesn't work (the other commands, like getting data from the database, are carried out though). This... (4 Replies)
Discussion started by: SharkM
4 Replies

5. UNIX and Linux Applications

Parsing info from a text file into an IDL procedure

Hi, I hope this is appropriate for this forum. I have a text file (test.txt) that contains information that I would like to parse into an IDL procedure. Each line of the text file is either a number or a string, which will be a variable in my IDL procedure. Therefore I want to read each line... (1 Reply)
Discussion started by: msb65
1 Replies

6. UNIX for Dummies Questions & Answers

WHERE statement similar to IDL

Is there a Unix command similar to the WHERE command in IDL. Such a command would return all location numbers of an array where the value at those locations satisfy specified conditions. For example, if I have a random vector vector=(3 5 6 9) how can I find the location numbers in ${vector}... (6 Replies)
Discussion started by: msb65
6 Replies

7. Linux

'IDL:omg.org/CORBA/TRANSIENT:1.0' exception

Hi, We are working in a Linux client server environment ,where we have the CORBA running to facilitate the client server model.But here some time we are getting the system exception, ID 'IDL:omg.org/CORBA/TRANSIENT:1.0' OMG minor code (2), described as 'No usable profile in IOR.', ... (0 Replies)
Discussion started by: prasanta jena
0 Replies

8. UNIX for Advanced & Expert Users

compiling idl file on unix

hi i need to compile idl files to convert them to classes, on Unix platform. Please tell me how to compile these files & which commands are to be used for this purpose. Thanks & Regards (6 Replies)
Discussion started by: rochitsharma
6 Replies
Login or Register to Ask a Question
orbit-idl-2(1)							   User Commands						    orbit-idl-2(1)

NAME
orbit-idl-2 - ORBit IDL compiler SYNOPSIS
orbit-idl-2 [--define=string ] [--include=string] [--libIDL-version] [--lang=string] [--debug=int] [--idlwarnlevel=int] [--imodule] [--showcpperrors] [--nostubs] [--noskels] [--nocommon] [--noheaders] [--noidata] [--add-imodule] [--skeleton-impl] [--backenddir=dir] [--c- output-formatter=program] [--onlytop] [--pidl] [--nodefskels] [--deps=filename] [--headerguardprefix=string] [--usage] [--version] [--help] idlfile DESCRIPTION
orbit-idl-2 is the ORBit Interface Definition Language (IDL) compiler. It takes as input an IDL file, and produces as output a set of source code files which you can use to develop an application that implements and/or uses the CORBA interface defined in the IDL file. OPTIONS
The following options are supported: --add-imodule Output an interface type data file. --backenddir=dirOverride the IDL backend library directory. --c-output-formaSpecifyothemprogram with which to format output (normally, indent). --debug=int Set the debug level. Valid values are in the range 0 to 4 inclusive. You can also use -d to specify this option. --define=string Define value in preprocessor. This option is passed directly to cpp(1). You can also use -D to specify this option. --deps=filename Generate dependency information suitable for inclusion in a Makefile. --headerguardprePrefixrfor #ifdef header guards. Sometimes useful to avoid conflicts. --help Show help information on standard output, and exit. You can also use -? to specify this option. --idlwarnlevel=iSet the IDL warning level. Valid values are in the range 0 to 4 inclusive. The default value is 2. --imodule Output only an interface type data file. You can also use -i to specify this option. --include=stringAdd search path for include files. This option is passed directly to cpp(1). You can also use -I to specify this option. --lang=string Display the language (the default is C). You can also use -l to specify this option. --libIDL-versionShow version of libIDL used. See libIDL-2(3). --nocommon Do not output a common file. --nodefskels Do not output definitions for skeletals in header. --noheaders Do not output a header file. --noidata Do not generate interface type data. --noskels Do not output a skeletals file. --nostubs Do not output a stubs file. --onlytop Inhibit inclusion of IDL files. --pidl Treat the input as Pseudo IDL. --showcpperrors Show C preprocessor errors. --skeleton-impl Output a skeletal object implementation. --usage Display brief usage information. --version Display the compiler version and serial. You can also use -v to specify this option. OPERANDS
The following operands are supported: filename The name of the input IDL file to be processed by the compiler. EXAMPLES
Example 1: Compiling an IDL file example% orbit-idl-2 example.idl The following files are output: example.h example-stubs.c example-skels.c example-common.c Example 2: Compiling an IDL file for use as a client of the interface only example% orbit-idl-2 --noskels example.idl The following files are output: example.h example-stubs.c example-common.c Example 3: Compiling an IDL file for use as a servant of the interface only example% orbit-idl-2 --nostubs example.idl The following files are output: example.h example-skels.c example-common.c Example 4: Compiling an IDL file that includes IDL files located in a non-standard directory example% orbit-idl-2 -I /example-idl-location example.idl In this example, example.idl includes example-included.idl, which is located in /example-idl-location/example-included.idl. EXIT STATUS
The following exit values are returned: 0 Application exited successfully >0 Application exited with failure FILES
The following files are used by this application: /usr/bin/Executable2for the ORBit IDL compiler ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWgnome-component-devel | +-----------------------------+-----------------------------+ |Interface stability |External | +-----------------------------+-----------------------------+ SEE ALSO
cpp(1), libIDL-2(3), libORBit-2(3), attributes(5) NOTES
The output source code is specific to ORBit and should not be used with any other Object Request Broker (ORB), with any other version of ORBit, or on a platform other than the one on which the IDL compiler was itself compiled. Written by Mark McLoughlin, Sun Microsystems Inc., 2003. SunOS 5.10 11 Jan 2003 orbit-idl-2(1)