Skip to content

Instantly share code, notes, and snippets.

@grammy-jiang
Last active August 3, 2023 05:24
Show Gist options
  • Save grammy-jiang/8b3c27e3dfc96319b2408486e22efa1d to your computer and use it in GitHub Desktop.
Save grammy-jiang/8b3c27e3dfc96319b2408486e22efa1d to your computer and use it in GitHub Desktop.
omniORB and omniORBpy installation
  1. omniORB
foo@bar:~$ sudo dnf install openssl libzstd-devel
foo@bar:~$ ../configure --enable-thread-tracing --with-openssl=/usr/bin PYTHON=$HOME/.pyenv/shims/python
foo@bar:~$ make -j
foo@bar:~$ sudo make install
foo@bar:~$ omniidl -V
omniidl version 1.0
  1. omniORBpy
foo@bar:~$ ../configure --prefix=$HOME/.pyenv/versions/3.10.8 --with-omniorb=/usr/local --with-openssl=/usr/bin PYTHON=$HOME/.pyenv/shims/python
foo@bar:~$ make -j
foo@bar:~$ make install
@grammy-jiang
Copy link
Author

grammy-jiang commented Aug 3, 2023

  1. omniORB
foo@bar:~$ ../configure \
    --prefix=$HOME/.local/share/virtualenvs/d-mts-PriHijkA \
    --with-openssl=/usr/bin \
    PYTHON=$HOME/.local/share/virtualenvs/d-mts-PriHijkA/bin/python
  1. omniORBpy
foo@bar:~$ ../configure \
    --prefix=$HOME/.local/share/virtualenvs/d-mts-PriHijkA \
    --with-omniorb=$HOME/.local/share/virtualenvs/d-mts-PriHijkA \
    --with-openssl=/usr/bin \
    PYTHON=$HOME/.local/share/virtualenvs/d-mts-PriHijkA/bin/python

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment