Hi. I am confused as to the current status of what is fully fixed and available. For me, building from latest GitHub on Ubuntu 20.10 amd64 still has at least the Pegasus drivers broken. Reviewing this thread there are conflicting statuses. In somer instances the problems are pegged to bad packages, but building from source supposedly works (not my experience); other entries point to possible C++ inheritance issues (so building wouldn't fix that).

Can Jasem or other knowledgeable individual please recap the current status and whether those of us still out-of-luck should be looking for a source update from which to compile a working version or if it is best to look to nightly builds.

Just to confirm that I am building properly on Ubuntu 20.10 amd64, my steps are:

  1. Make sure environment is up-to-date (sudo apt update && sudo apt full-upgrade -y)
  2. Install all required build pre-requisites as well as ccache
  3. Then perform the following (completing the set of operations for each package before proceeding to the next package):
    1. Clone (or pull latest) master branches from the following links:
      1. indi: github.com/indilib/indi.git
      2. indi-3rdparty: github.com/indilib/indi-3rdparty.git
      3. kstars: github.com/KDE/kstars.git
    2. cmake options:
      1. indi: cmake -DCCACHE_SUPPORT=ON -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug "$SRCROOT/indi"
      2. 3rdparty-library: cmake -DCCACHE_SUPPORT=ON -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug -DBUILD_LIBS=1 "$SRCROOT/indi-3rdparty"
      3. 3rdparty-drivers: cmake -DCCACHE_SUPPORT=ON -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug -DWITH_FXLOAD=1 "$SRCROOT/indi-3rdparty"
      4. kstars: cmake -DCCACHE_SUPPORT=ON -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RelWithDebInfo "$SRCROOT/kstars"
    3. make -j $NCPU
    4. sudo make install
Any info or insights appreciated.

Read More...