-3

i am facing issues in compilation of idl file. i have tried with different options with -Cw, -GI and -o all are giving the below errors

tao_idl: "El_file.idl", line 201: error in lookup of symbols File::File1_operationFailed

tao_idl: "El_file.idl", line 204: error in lookup of symbols File::File1_operationFailed

tao_idl: "El_file.idl", line 208: error in lookup of symbols File::File1_operationFailed

tao_idl: El_file.idl: found 744 errors Fatal Error - Aborting

Thanks for response john. line 9 : statement cannot be parsed

line 201: error in lookup of symbol: ptype

line 9 :module Mgr{ interface intf1;

      interface intf2;

      interface intf3;

      ....
      ..
      ...
      ...
      ..
   }

enum ptype{ Profile1, Profile2, ... ... }

line 201 :struct pstruct{

                ptype P1;

             }
Johnny Willemsen
  • 2,942
  • 1
  • 14
  • 16
user3679622
  • 23
  • 1
  • 6

1 Answers1

0

Your IDL is not legal, you should close the module, enum, and struct with }; and not just }

Johnny Willemsen
  • 2,942
  • 1
  • 14
  • 16