Eclipse IDL compilation

前端 未结 3 1310
深忆病人
深忆病人 2021-01-27 22:20

I added orb plug-in to Eclipse and created an IDL file.I configured IDL Compiler to the project which has IDL file.When i rigth-click on the IDL file there is an option as follo

3条回答
  •  盖世英雄少女心
    2021-01-27 23:11

    I am also having trouble with CORBA IDL compilation under Eclipse. The CORBA IDL compiler generates an error in the Eclipse error log = “Unhandled event loop exception” due to a “java.lang.NoClassDefFoundError: org/openorb/compiler/IdlCompiler” exception.

    The above answer may work for "HelloWorld", but CORBA IDL files are a super-set of standard IDL syntax and have their own unique keywords like "typeprefix" and "local".

    Therefore they must be compiled using the IDL compiler org.openorb.compiler.IdlCompiler.

    One way to do this is using the ANT compiler. A sample ANT XML script would read:

     
    
      
      
      
    
    

提交回复
热议问题