mazix
mazix

Reputation: 2604

How to install omniORB on Windows?

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

Answers (1)

Dineshkumar
Dineshkumar

Reputation: 1548

As you have already installed Python, MinGW and added environment settings also,

You need to do the following things.

  1. Go the unzipped folder of OmniORB ( I assume it is there in C:\OmniORB)
  2. Open the src folder, where you can find the make files
  3. Compile it with the MinGW(gcc) compiler which you have installed already

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

Related Questions