Reputation: 2604
I installed Python and MinGW, added everything which is needed to PATH (g++ and python), and downloaded omniORB from http://sourceforge.net/projects/omniorb/files/omniORB/omniORB-4.1.6/omniORB-4.1.6.tar.bz2/download, unzipped it.
I cded to omniORB directory but there were no omniORB binaries in \bin\x86_win32 directory.
So I have 2 questions:
1) where can I get omniORB binaries? (I would like to install omniORB on my computer with Windows XP/Vista (both x86))
2) is it possible to install omniORB from source when I have only MinGW installed (no Visual C++)? How to do this (I need steps)?
Upvotes: 3
Views: 5924
Reputation: 1548
As you have already installed Python, MinGW and added environment settings also,
You need to do the following things.
Answer for Question 1: Once the compilation is done, you will get the OmniORB binary, if it is not found in bin folder.
Answer for Question 2: Once you unzipped, it internally means you have installed. It doesn't have any setup.exe files externally.
Since you have MinGW make use of gcc compiler in it.
Upvotes: 2