Discussion:
[omniORB] Building an old version of Windows Omniorb
Mike Almquist
2011-08-02 21:48:59 UTC
Permalink
Pretty new to cygwin and this is the first time I've tried compiling the windows versions of the code.
I'm trying to add some debugging to an older version of CORBA (4.1.0) to verify the exact error coming from Windows, so I need rebuild it under Windows.
I already had a full version of cygwin installed.
However when I try to build it I get the following errors:
making export in src/tool...make[1]: Entering directory `/cygdrive/c/src/omniOrb/omniORB-4.1.0/src/tool'making export in src/tool/omniidl...make[2]: Entering directory `/cygdrive/c/src/omniOrb/omniORB-4.1.0/src/tool/omniidl'making export in src/tool/omniidl/cxx...make[3]: Entering directory `/cygdrive/c/src/omniOrb/omniORB-4.1.0/src/tool/omniidl/cxx'making export in src/tool/omniidl/cxx/cccp...make[4]: Entering directory `/cygdrive/c/src/omniOrb/omniORB-4.1.0/src/tool/omniidl/cxx/cccp'../../../../../bin/x86_win32/clwrapper -gnuwin32 -c -O2 -MD -GS -GR -Zi -nologo-DHAVE_CONFIG_H -I. -I. -I. -I../../../../../include -D__WIN32__ -D_WIN32_WINNT=0x0400 -D__x86__ -D__NT__ -D__OSVERSION__=4 -D_CRT_SECURE_NO_DEPRECATE=1 -Focexp.o cexp.ccl -c -O2 -MD -GS -GR -Zi -nologo -DHAVE_CONFIG_H -I. -I. -I. -I..\..\..\..\..\include -D__WIN32__ -D_WIN32_WINNT=0x0400 -D__x86__ -D__NT__ -D__OSVERSION__=4 -D_CRT_SECURE_NO_DEPRECATE=1 -Focexp.o cexp.c/cygdrive/c/src/omniOrb/omniORB-4.1.0/bin/x86_win32/clwrapper.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directorymake[4]: *** [cexp.o] Error 127make[4]: Leaving directory `/cygdrive/c/src/omniOrb/omniORB-4.1.0/src/tool/omniidl/cxx/cccp'make[3]: *** [export] Error 1make[3]: Leaving directory `/cygdrive/c/src/omniOrb/omniORB-4.1.0/src/tool/omniidl/cxx'make[2]: *** [export] Error 1make[2]: Leaving directory `/cygdrive/c/src/omniOrb/omniORB-4.1.0/src/tool/omniidl'make[1]: *** [export] Error 1make[1]: Leaving directory `/cygdrive/c/src/omniOrb/omniORB-4.1.0/src/tool'make: *** [export] Error 1
I assume from clwrapper.c that is it trying to map my cygdrive to my windows drives. All of my registry keys are created but they are blank.
Is this my problem and how do I fix it?
Thanks
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://www.omniorb-support.com/pipermail/omniorb-list/attachments/20110802/8ebaa86e/attachment.htm
Mike Almquist
2011-08-03 06:40:06 UTC
Permalink
Okay I'm finally realizing that the path is wrong for clwrapper.exe

From: ***@hotmail.com
To: omniorb-***@omniorb-support.com
Date: Tue, 2 Aug 2011 10:48:26 -0500
Subject: [omniORB] Building an old version of Windows Omniorb








Pretty new to cygwin and this is the first time I've tried compiling the windows versions of the code.
I'm trying to add some debugging to an older version of CORBA (4.1.0) to verify the exact error coming from Windows, so I need rebuild it under Windows.
I already had a full version of cygwin installed.
However when I try to build it I get the following errors:
making export in src/tool...make[1]: Entering directory `/cygdrive/c/src/omniOrb/omniORB-4.1.0/src/tool'making export in src/tool/omniidl...make[2]: Entering directory `/cygdrive/c/src/omniOrb/omniORB-4.1.0/src/tool/omniidl'making export in src/tool/omniidl/cxx...make[3]: Entering directory `/cygdrive/c/src/omniOrb/omniORB-4.1.0/src/tool/omniidl/cxx'making export in src/tool/omniidl/cxx/cccp...make[4]: Entering directory `/cygdrive/c/src/omniOrb/omniORB-4.1.0/src/tool/omniidl/cxx/cccp'../../../../../bin/x86_win32/clwrapper -gnuwin32 -c -O2 -MD -GS -GR -Zi -nologo-DHAVE_CONFIG_H -I. -I. -I. -I../../../../../include -D__WIN32__ -D_WIN32_WINNT=0x0400 -D__x86__ -D__NT__ -D__OSVERSION__=4 -D_CRT_SECURE_NO_DEPRECATE=1 -Focexp.o cexp.ccl -c -O2 -MD -GS -GR -Zi -nologo -DHAVE_CONFIG_H -I. -I. -I. -I..\..\..\..\..\include -D__WIN32__ -D_WIN32_WINNT=0x0400 -D__x86__ -D__NT__ -D__OSVERSION__=4 -D_CRT_SECURE_NO_DEPRECATE=1 -Focexp.o cexp.c/cygdrive/c/src/omniOrb/omniORB-4.1.0/bin/x86_win32/clwrapper.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directorymake[4]: *** [cexp.o] Error 127make[4]: Leaving directory `/cygdrive/c/src/omniOrb/omniORB-4.1.0/src/tool/omniidl/cxx/cccp'make[3]: *** [export] Error 1make[3]: Leaving directory `/cygdrive/c/src/omniOrb/omniORB-4.1.0/src/tool/omniidl/cxx'make[2]: *** [export] Error 1make[2]: Leaving directory `/cygdrive/c/src/omniOrb/omniORB-4.1.0/src/tool/omniidl'make[1]: *** [export] Error 1make[1]: Leaving directory `/cygdrive/c/src/omniOrb/omniORB-4.1.0/src/tool'make: *** [export] Error 1
I assume from clwrapper.c that is it trying to map my cygdrive to my windows drives. All of my registry keys are created but they are blank.
Is this my problem and how do I fix it?
Thanks

_______________________________________________
omniORB-list mailing list
omniORB-***@omniorb-support.com
http://www.omniorb-support.com/mailman/listinfo/omniorb-list
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://www.omniorb-support.com/pipermail/omniorb-list/attachments/20110802/8fbecec5/attachment.htm
Loading...