Package Details: rtklib-qt-git r203.1be8be2-1

Git Clone URL: https://aur.archlinux.org/rtklib-qt-git.git (read-only, click to copy)
Package Base: rtklib-qt-git
Description: An Open Source Program Package for GNSS Positioning. QT port.
Upstream URL: http://www.rtklib.com/
Licenses: BSD
Groups: GNSS
Provides: rtklib-qt
Submitter: AchmadFathoni
Maintainer: AchmadFathoni (dobedobedo)
Last Packager: AchmadFathoni
Votes: 0
Popularity: 0.000000
First Submitted: 2021-05-11 18:58 (UTC)
Last Updated: 2022-06-18 16:11 (UTC)

Pinned Comments

AchmadFathoni commented on 2022-02-15 14:09 (UTC)

Need co-maintainer for faster issue response

Latest Comments

dreieck commented on 2024-02-16 20:00 (UTC)

https://github.com/rtklibexplorer/RTKLIB is official, see https://github.com/JensReimann/RTKLIB/issues/31#issuecomment-1949147933.

dreieck commented on 2024-02-15 23:54 (UTC) (edited on 2024-02-16 00:14 (UTC) by dreieck)

Different source, https://github.com/rtklibexplorer/RTKLIB, builds.

Here ↗ fixed PKGBUILD with ↗ split out rtklaunch.desktop file:

[Desktop Entry]
Type=Application
Name=RTKLIB Launcher
Comment=RTKLIB Launcher
Exec=rtklaunch_qt
Icon=rtklaunch
Terminal=false
Categories=Science
# Maintainer: Achmad Fathoni <fathoniDOTidATgmailDOTcom>
# Contributor: dreick (https://aur.archlinux.org/account/dreieck)
# Maintainer: Achmad Fathoni <fathoniDOTidATgmailDOTcom>
# Contributor: Yu-Hsuan Tu <dobe0331 at gmail dot com>

_pkgname=RTKLIB
pkgname=rtklib-qt-git
epoch=1
pkgver=b34i+16.r458.20240213.788504f
pkgrel=1
pkgdesc="An Open Source Program Package for GNSS Positioning. QT port."
arch=('i686' 'x86_64')
url="http://www.rtklib.com/"
license=('BSD-2-Clause')
groups=('GNSS')
depends=(
  'glibc'
  'qt5-base'
  'qt5-serialport'
  'qt5-webchannel'
  'qt5-webengine'
  'qt5-location'
  'qt5-declarative'
  'gcc-libs'
  'libglvnd'
  'hicolor-icon-theme'
)
provides=("rtklib-qt=${pkgver}")
conflicts=("rtklib-qt")
makedepends=('git' 'qt5-base' 'imagemagick' 'optipng')
source=(
  "${_pkgname}::git+https://github.com/rtklibexplorer/RTKLIB.git"
  "rtklaunch.desktop"
)
sha256sums=(
  'SKIP'
  '1e718727eb299a1321c64bce5a7f63315cfe21769322ec2f305894e8636f0cdc'
)

pkgver() {
  cd "$_pkgname"

  _ver="$(git describe  --tags | sed 's|^[vV]||' | sed 's|-g[0-9a-fA-F]*$||' | tr '-' '+')"
  _rev="$(git rev-list --count HEAD)"
  _date="$(git log -1 --date=format:"%Y%m%d" --format="%ad")"
  _hash="$(git rev-parse --short HEAD)"

  if [ -z "${_ver}" ]; then
    error "Version could not be determined."
    return 1
  else
    printf '%s' "${_ver}.r${_rev}.${_date}.${_hash}"
  fi
}

prepare(){
  cd "${srcdir}/${_pkgname}"
  git log > git.log
}

build() {
  cd "${srcdir}/${_pkgname}/app/qtapp"
  qmake-qt5
  make -f Makefile

  # Prepare icons
  convert "${srcdir}/${_pkgname}/app/qtapp/rtklaunch_qt/rtklaunch_Icon.ico" "${srcdir}/rtklaunch.png"
  optipng -o7 "${srcdir}/rtklaunch.png"
}

package() {
  cd "${srcdir}/${_pkgname}/app/qtapp"

  # Install libraries
  make -f Makefile install INSTALL_ROOT="${pkgdir}"

  # Insall binaries
  ./install_qtapp # Installs into "${srcdir}/RTKLIB_bin"
  install -Dvm755 -t "${pkgdir}/usr/bin" "${srcdir}/RTKLIB_bin"/*

  # Install desktop entries
  install -Dvm644 -t "${pkgdir}/usr/share/applications" "${srcdir}/rtklaunch.desktop"

  # Install icon
  install -Dvm644 -t "${pkgdir}/usr/share/icons/hicolor/64x64/apps" "${srcdir}/rtklaunch.png"

  # Install readme
  install -Dvm644 -t "${pkgdir}/usr/share/doc/${pkgname%-git}" "${srcdir}/${_pkgname}"/readme.txt "${srcdir}/${_pkgname}/git.log"

  # Install licence
  install -Dvm644 -t "${pkgdir}/usr/share/licenses/${pkgname}" "${srcdir}/${_pkgname}"/license.txt
}

dreieck commented on 2024-02-15 20:27 (UTC) (edited on 2024-02-15 23:37 (UTC) by dreieck)

Fails to build for me with make: *** No rule to make target 'sub-src'.:

==> Starting build()...
Info: creating stash file /tmp/makepkg/build/rtklib-qt-git/src/RTKLIB/.qmake.stash
Reading /tmp/makepkg/build/rtklib-qt-git/src/RTKLIB/src/src.pro
Reading /tmp/makepkg/build/rtklib-qt-git/src/RTKLIB/app/qtapp/qtapp.pro
 Reading /tmp/makepkg/build/rtklib-qt-git/src/RTKLIB/src/src.pro
 Reading /tmp/makepkg/build/rtklib-qt-git/src/RTKLIB/app/qtapp/rtknavi_qt/rtknavi_qt.pro
 Reading /tmp/makepkg/build/rtklib-qt-git/src/RTKLIB/app/qtapp/rtkget_qt/rtkget_qt.pro
 Reading /tmp/makepkg/build/rtklib-qt-git/src/RTKLIB/app/qtapp/rtkplot_qt/rtkplot_qt.pro
 Reading /tmp/makepkg/build/rtklib-qt-git/src/RTKLIB/app/qtapp/rtkpost_qt/rtkpost_qt.pro
 Reading /tmp/makepkg/build/rtklib-qt-git/src/RTKLIB/app/qtapp/rtklaunch_qt/rtklaunch_qt.pro
 Reading /tmp/makepkg/build/rtklib-qt-git/src/RTKLIB/app/qtapp/srctblbrows_qt/srctblbrows_qt.pro
 Reading /tmp/makepkg/build/rtklib-qt-git/src/RTKLIB/app/qtapp/strsvr_qt/strsvr_qt.pro
 Reading /tmp/makepkg/build/rtklib-qt-git/src/RTKLIB/app/qtapp/rtkconv_qt/rtkconv_qt.pro
Reading /tmp/makepkg/build/rtklib-qt-git/src/RTKLIB/lib/lib.pro
 Reading /tmp/makepkg/build/rtklib-qt-git/src/RTKLIB/lib/iers/iers.pro
make: *** No rule to make target 'sub-src'.  Stop.
==> ERROR: A failure occurred in build().
    Aborting...
 -> error making: rtklib-qt-git-exit status 4

Happens also with repeated tries of makepkg -sfi.

When I fix this, the actual code fails to build with getmain.cpp:507:45: error: ‘class QDropEvent’ has no member named ‘position’:

make[2]: Entering directory '/tmp/makepkg/build/rtklib-qt-git/src/RTKLIB/app/qtapp/rtkget_qt'
g++ -c -pipe -g -std=gnu++11 -Wall -Wextra -D_REENTRANT -fPIC -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DENAIRN -DNFREQ=5 -DNEXOBS=3 -DSVR_REUSEADDR -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I. -I../../../src -I../appcmn_qt -I/usr/include/qt -I/usr/include/qt/QtWidgets -I/usr/include/qt/QtGui -I/usr/include/qt/QtCore -I. -I. -I/usr/lib/qt/mkspecs/linux-g++ -o getmain.o getmain.cpp
getmain.cpp: In member function ‘virtual void MainForm::dropEvent(QDropEvent*)’:
getmain.cpp:507:45: error: ‘class QDropEvent’ has no member named ‘position’
  507 |     if (stationListWidget == childAt(event->position().toPoint()))
      |                                             ^~~~~~~~
make[2]: *** [Makefile:1236: getmain.o] Error 1
make[2]: Leaving directory '/tmp/makepkg/build/rtklib-qt-git/src/RTKLIB/app/qtapp/rtkget_qt'
make[1]: *** [Makefile:117: sub-rtkget_qt-install_subtargets] Error 2

(↗ Upstream issue report.)

Regards!

dobedobedo commented on 2022-06-12 17:14 (UTC)

Hi, I successfully build the latest version with this PKGBUILD

# Maintainer: Achmad Fathoni <fathoniDOTidATgmailDOTcom>
# Contributor: Yu-Hsuan Tu <dobe0331 at gmail dot com>
_pkgname=RTKLIB
pkgname=rtklib-qt-git
provides=("rtklib-qt")
pkgver=r203.1be8be2
pkgrel=1
pkgdesc="An Open Source Program Package for GNSS Positioning. QT port."
arch=('x86_64')
url="http://www.rtklib.com/"
license=('BSD')
groups=('GNSS')
depends=('glibc')
makedepends=('git' 'gcc-fortran' 'qt5-base' 'imagemagick')
source=("${_pkgname}::git+https://github.com/JensReimann/RTKLIB.git#branch=rtklib_2.4.3")
sha256sums=('SKIP')

pkgver() {
  cd "$_pkgname"
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

prepare(){
    cd "${srcdir}/${_pkgname}"
    find . -name "*_qt.pro*" -exec sed -i '$ a target.path = /usr/bin\nINSTALLS += target' {} \;

    # Create pro file for qmake
    echo \
"TEMPLATE = subdirs

SUBDIRS= src \\
         app/qtapp \\
         lib

app.depends = src

" > "${srcdir}/${_pkgname}/RTKLib.pro"

}

build() {
    cd "${srcdir}/${_pkgname}"
    qmake -recursive
    make sub-src

    # Prepare icons
    convert "${srcdir}/${_pkgname}/app/qtapp/rtklaunch_qt/rtklaunch_Icon.ico" "${srcdir}/rtklaunch.png"

    # Create Desktop entry
    echo "[Desktop Entry]
Type=Application
Name=RTKLIB Launcher
Comment=RTKLIB Launcher
Exec=rtklaunch_qt
Icon=rtklaunch
Terminal=false
Categories=Science" > "${srcdir}/rtklaunch.desktop"

}

package() {
    make -C ${srcdir}/${_pkgname} sub-app-qtapp-install_subtargets INSTALL_ROOT="${pkgdir}"

    # Move desktop entries
    mkdir -p "${pkgdir}/usr/share/applications/"
    mv "${srcdir}/rtklaunch.desktop" "${pkgdir}/usr/share/applications/"

    # Move icon
    mkdir -p "${pkgdir}/usr/share/icons/hicolor/64x64/apps/"
    mv "${srcdir}/rtklaunch.png" "${pkgdir}/usr/share/icons/hicolor/64x64/apps/rtklaunch.png"

    # Install licence
    install -Dm644 "${srcdir}"/"${_pkgname}"/LICENSE.txt "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE.txt"
}

I can become the co-maintainer of this package.

dobedobedo commented on 2022-03-06 16:54 (UTC) (edited on 2022-03-06 17:32 (UTC) by dobedobedo)

I encountered the error message when trying to build this package. However, if I build it with makepkg the second time, the package would be built successfully.

Below is the error message. Sorry that the collapsable section syntax doesn't seem to work:

<details> <summary>Click to expand!</summary>
  ==> Making package: rtklib-qt-git r128.27e5448-1 (Sun Mar  6 19:52:32 2022)
  ==> Checking runtime dependencies...
  ==> Checking buildtime dependencies...
  ==> Retrieving sources...
    -> Cloning RTKLIB git repo...
  Cloning into bare repository '/home/o0331dobe/Downloads/rtklib-qt-git/RTKLIB'...
  ==> Validating source files with sha256sums...
      RTKLIB ... Skipped
  ==> Extracting sources...
    -> Creating working copy of RTKLIB git repo...
  Cloning into 'RTKLIB'...
  done.
  Switched to a new branch 'makepkg'
  ==> Starting prepare()...
  ==> Starting pkgver()...
  ==> Starting build()...
  Info: creating stash file /home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/.qmake.stash
  Reading /home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/src/src.pro
  Reading /home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/app.pro
   Reading /home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/rtknavi_qt/rtknavi_qt.pro
   Reading /home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/rtkget_qt/rtkget_qt.pro
   Reading /home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/rtkplot_qt/rtkplot_qt.pro
   Reading /home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/rtkpost_qt/rtkpost_qt.pro
   Reading /home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/rtklaunch_qt/rtklaunch_qt.pro
   Reading /home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/srctblbrows_qt/srctblbrows_qt.pro
   Reading /home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/strsvr_qt/strsvr_qt.pro
   Reading /home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/rtkconv_qt/rtkconv_qt.pro
  cd src/ && ( test -e Makefile || /usr/bin/qmake -o Makefile /home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/src/src.pro ) && make -f Makefile
  cd app/ && ( test -e Makefile || /usr/bin/qmake -o Makefile /home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/app.pro ) && make -f Makefile
  make[1]: Entering directory '/home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app'
  cd rtknavi_qt/ && ( test -e Makefile || /usr/bin/qmake -o Makefile /home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/rtknavi_qt/rtknavi_qt.pro ) && make -f Makefile
  cd rtkget_qt/ && ( test -e Makefile || /usr/bin/qmake -o Makefile /home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/rtkget_qt/rtkget_qt.pro ) && make -f Makefile
  cd rtkplot_qt/ && ( test -e Makefile || /usr/bin/qmake -o Makefile /home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/rtkplot_qt/rtkplot_qt.pro ) && make -f Makefile
  make[1]: Entering directory '/home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/src'
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o rtkcmn.o rtkcmn.c
  cd rtkpost_qt/ && ( test -e Makefile || /usr/bin/qmake -o Makefile /home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/rtkpost_qt/rtkpost_qt.pro ) && make -f Makefile
  cd rtklaunch_qt/ && ( test -e Makefile || /usr/bin/qmake -o Makefile /home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/rtklaunch_qt/rtklaunch_qt.pro ) && make -f Makefile
  cd srctblbrows_qt/ && ( test -e Makefile || /usr/bin/qmake -o Makefile /home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/srctblbrows_qt/srctblbrows_qt.pro ) && make -f Makefile
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o convkml.o convkml.c
  cd strsvr_qt/ && ( test -e Makefile || /usr/bin/qmake -o Makefile /home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/strsvr_qt/strsvr_qt.pro ) && make -f Makefile
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o convrnx.o convrnx.c
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o datum.o datum.c
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o download.o download.c
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o ephemeris.o ephemeris.c
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o geoid.o geoid.c
  cd rtkconv_qt/ && ( test -e Makefile || /usr/bin/qmake -o Makefile /home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/rtkconv_qt/rtkconv_qt.pro ) && make -f Makefile
  download.c: In function 'get_list':
  download.c:322:9: warning: unused variable 'stat' [-Wunused-variable]
    322 |     int stat;
    |         ^~~~
  download.c: In function 'test_local':
  download.c:509:22: warning: unused variable 'remot_p' [-Wunused-variable]
    509 |     char remot[1024],remot_p[1024],dir_t[1024],local[1024],str[1024];
    |                      ^~~~~~~
  convkml.c: In function 'outtrack':
  convkml.c:36:38: warning: unused parameter 'outtime' [-Wunused-parameter]
     36 |                      int outalt, int outtime)
    |                                  ~~~~^~~~~~~
  download.c: In function 'dl_test':
  download.c:780:12: warning: unused variable 'tow' [-Wunused-variable]
    780 |     double tow;
    |            ^~~
  rtkcmn.c:180:5: warning: missing initializer for field 'mask' of 'snrmask_t' [-Wmissing-field-initializers]
    180 |     15.0*D2R,{{0,0}},           /* elmin,snrmask */
    |     ^~~~
  In file included from rtkcmn.c:117:
  rtklib.h:967:12: note: 'mask' declared here
    967 |     double mask[NFREQ][9]; /* mask (dBHz) at 5,10,...85 deg */
    |            ^~~~
  rtkcmn.c:197:1: warning: missing initializer for field 'rnxopt' of 'prcopt_t' [-Wmissing-field-initializers]
    197 | };
    | ^
  In file included from rtkcmn.c:117:
  rtklib.h:1020:10: note: 'rnxopt' declared here
   1020 |     char rnxopt[2][256]; /* rinex options {rover,base} */
    |          ^~~~~~
  datum.c:11:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     11 | static const char rcsid[]="$Id: datum.c,v 1.1 2008/07/17 21:48:06 ttaka Exp $";
    |                   ^~~~~
  convrnx.c: In function 'setapppos':
  convrnx.c:844:5: warning: missing initializer for field 'rr' of 'sol_t' [-Wmissing-field-initializers]
    844 |     sol_t sol={{0}};
    |     ^~~~~
  In file included from convrnx.c:29:
  rtklib.h:853:12: note: 'rr' declared here
    853 |     double rr[6];       /* position/velocity (m|m/s) */
    |            ^~
  geoid.c: In function 'fgetgsi':
  geoid.c:138:47: warning: unused parameter 'nlat' [-Wunused-parameter]
    138 | static double fgetgsi(FILE *fp, int nlon, int nlat, int i, int j)
    |                                           ~~~~^~~~
  rtkcmn.c: In function 'matinv':
  rtkcmn.c:1020:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
   1020 |         for (i=0;i<n;i++) A[i+j*n]=0.0; A[j+j*n]=1.0;
    |         ^~~
  rtkcmn.c:1020:41: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
   1020 |         for (i=0;i<n;i++) A[i+j*n]=0.0; A[j+j*n]=1.0;
    |                                         ^
  rtkcmn.c: In function 'str2num':
  rtkcmn.c:1193:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
   1193 |     for (s+=i;*s&&--n>=0;s++) *p++=*s=='d'||*s=='D'?'E':*s; *p='\0';
    |     ^~~
  rtkcmn.c:1193:61: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
   1193 |     for (s+=i;*s&&--n>=0;s++) *p++=*s=='d'||*s=='D'?'E':*s; *p='\0';
    |                                                             ^
  rtkcmn.c: In function 'str2time':
  rtkcmn.c:1209:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
   1209 |     for (s+=i;*s&&--n>=0;) *p++=*s++; *p='\0';
    |     ^~~
  rtkcmn.c:1209:39: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
   1209 |     for (s+=i;*s&&--n>=0;) *p++=*s++; *p='\0';
    |                                       ^
  ephemeris.c:57:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     57 | static const char rcsid[]="$Id:$";
    |                   ^~~~~
  At top level:
  convrnx.c:31:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     31 | static const char rcsid[]="$Id:$";
    |                   ^~~~~
  At top level:
  convkml.c:23:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     23 | static const char rcsid[]="$Id: convkml.c,v 1.1 2008/07/17 21:48:06 ttaka Exp $";
    |                   ^~~~~
  At top level:
  download.c:16:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     16 | static const char rcsid[]="$Id:$";
    |                   ^~~~~
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o ionex.o ionex.c
  make[2]: Entering directory '/home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/srctblbrows_qt'
  make[2]: *** No rule to make target '../../src/libRTKLib.a', needed by 'srctblbrows_qt'.  Stop.
  make[2]: Leaving directory '/home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/srctblbrows_qt'
  make[1]: *** [Makefile:179: sub-srctblbrows_qt-make_first] Error 2
  make[1]: *** Waiting for unfinished jobs....
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o lambda.o lambda.c
  make[2]: Entering directory '/home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/rtkget_qt'
  make[2]: *** No rule to make target '../../src/libRTKLib.a', needed by 'rtkget_qt'.  Stop.
  make[2]: Leaving directory '/home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/rtkget_qt'
  make[1]: *** [Makefile:79: sub-rtkget_qt-make_first] Error 2
  make[2]: Entering directory '/home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/rtkpost_qt'
  make[2]: *** No rule to make target '../../src/libRTKLib.a', needed by 'rtkpost_qt'.  Stop.
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o options.o options.c
  make[2]: Leaving directory '/home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/rtkpost_qt'
  make[1]: *** [Makefile:129: sub-rtkpost_qt-make_first] Error 2
  make[2]: Entering directory '/home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/rtkconv_qt'
  make[2]: *** No rule to make target '../../src/libRTKLib.a', needed by 'rtkconv_qt'.  Stop.
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o pntpos.o pntpos.c
  make[2]: Leaving directory '/home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/rtkconv_qt'
  make[1]: *** [Makefile:229: sub-rtkconv_qt-make_first] Error 2
  make[2]: Entering directory '/home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/rtkplot_qt'
  make[2]: *** No rule to make target '../../src/libRTKLib.a', needed by 'rtkplot_qt'.  Stop.
  make[2]: Leaving directory '/home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/rtkplot_qt'
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o postpos.o postpos.c
  make[2]: Entering directory '/home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/rtknavi_qt'
  make[1]: *** [Makefile:104: sub-rtkplot_qt-make_first] Error 2
  make[2]: Entering directory '/home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/strsvr_qt'
  make[2]: *** No rule to make target '../../src/libRTKLib.a', needed by 'strsvr_qt'.  Stop.
  make[2]: Leaving directory '/home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/strsvr_qt'
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o ppp.o ppp.c
  make[1]: *** [Makefile:204: sub-strsvr_qt-make_first] Error 2
  make[2]: *** No rule to make target '../../src/libRTKLib.a', needed by 'rtknavi_qt'.  Stop.
  make[2]: Leaving directory '/home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/rtknavi_qt'
  make[2]: Entering directory '/home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/rtklaunch_qt'
  make[1]: *** [Makefile:54: sub-rtknavi_qt-make_first] Error 2
  /usr/bin/uic launchmain.ui -o ui_launchmain.h
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o ppp_ar.o ppp_ar.c
  rtkcmn.c: In function 'tropmodel':
  rtkcmn.c:3439:33: warning: unused parameter 'time' [-Wunused-parameter]
   3439 | extern double tropmodel(gtime_t time, const double *pos, const double *azel,
    |                         ~~~~~~~~^~~~
  rtkcmn.c: In function 'input_lexr':
  rtkcmn.c:3806:30: warning: unused parameter 'raw' [-Wunused-parameter]
   3806 | extern int input_lexr(raw_t *raw, unsigned char data) {return 0;}
    |                       ~~~~~~~^~~
  rtkcmn.c:3806:49: warning: unused parameter 'data' [-Wunused-parameter]
   3806 | extern int input_lexr(raw_t *raw, unsigned char data) {return 0;}
    |                                   ~~~~~~~~~~~~~~^~~~
  rtkcmn.c: In function 'input_lexrf':
  rtkcmn.c:3807:31: warning: unused parameter 'raw' [-Wunused-parameter]
   3807 | extern int input_lexrf(raw_t *raw, FILE *fp) {return 0;}
    |                        ~~~~~~~^~~
  rtkcmn.c:3807:42: warning: unused parameter 'fp' [-Wunused-parameter]
   3807 | extern int input_lexrf(raw_t *raw, FILE *fp) {return 0;}
    |                                    ~~~~~~^~
  rtkcmn.c: In function 'gen_lexr':
  rtkcmn.c:3808:33: warning: unused parameter 'msg' [-Wunused-parameter]
   3808 | extern int gen_lexr(const char *msg, unsigned char *buff) {return 0;}
    |                     ~~~~~~~~~~~~^~~
  rtkcmn.c:3808:53: warning: unused parameter 'buff' [-Wunused-parameter]
   3808 | extern int gen_lexr(const char *msg, unsigned char *buff) {return 0;}
    |                                      ~~~~~~~~~~~~~~~^~~~
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o ppp_corr.o ppp_corr.c
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o preceph.o preceph.c
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o qzslex.o qzslex.c
  /usr/bin/rcc -name rtklaunch_qt rtklaunch_qt.qrc -o qrc_rtklaunch_qt.cpp
  options.c:27:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     27 | static const char rcsid[]="$Id:$";
    |                   ^~~~~
  lambda.c:19:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     19 | static const char rcsid[]="$Id: lambda.c,v 1.1 2008/07/17 21:48:06 ttaka Exp $";
    |                   ^~~~~
  pntpos.c: In function 'tropcorr':
  pntpos.c:175:48: warning: unused parameter 'nav' [-Wunused-parameter]
    175 | extern int tropcorr(gtime_t time, const nav_t *nav, const double *pos,
    |                                   ~~~~~~~~~~~~~^~~
  pntpos.c: In function 'rescode':
  pntpos.c:210:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
    210 |     for (i=0;i<3;i++) rr[i]=x[i]; dtr=x[3];
    |     ^~~
  pntpos.c:210:35: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
    210 |     for (i=0;i<3;i++) rr[i]=x[i]; dtr=x[3];
    |                                   ^~~
  At top level:
  rtkcmn.c:132:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
    132 | static const char rcsid[]="$Id: rtkcmn.c,v 1.1 2008/07/17 21:48:06 ttaka Exp ttaka $";
    |                   ^~~~~
  pntpos.c: In function 'raim_fde':
  pntpos.c:383:5: warning: missing initializer for field 'rr' of 'sol_t' [-Wmissing-field-initializers]
    383 |     sol_t sol_e={{0}};
    |     ^~~~~
  In file included from pntpos.c:20:
  rtklib.h:853:12: note: 'rr' declared here
    853 |     double rr[6];       /* position/velocity (m|m/s) */
    |            ^~
  ionex.c:21:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     21 | static const char rcsid[]="$Id:$";
    |                   ^~~~~
  ppp.c: In function 'yaw_IIR':
  ppp.c:351:24: warning: unused parameter 'sat' [-Wunused-parameter]
    351 | static int yaw_IIR(int sat, int opt, double beta, double mu, double *yaw)
    |                    ~~~~^~~
  ppp.c: In function 'yaw_IIF':
  ppp.c:370:24: warning: unused parameter 'sat' [-Wunused-parameter]
    370 | static int yaw_IIF(int sat, int opt, double beta, double mu, double *yaw)
    |                    ~~~~^~~
  ppp.c: In function 'yaw_GLO':
  ppp.c:388:24: warning: unused parameter 'sat' [-Wunused-parameter]
    388 | static int yaw_GLO(int sat, int opt, double beta, double mu, double *yaw)
    |                    ~~~~^~~
  ppp.c: In function 'yaw_GAL':
  ppp.c:406:24: warning: unused parameter 'sat' [-Wunused-parameter]
    406 | static int yaw_GAL(int sat, int opt, double beta, double mu, double *yaw)
    |                    ~~~~^~~
  ppp.c:406:33: warning: unused parameter 'opt' [-Wunused-parameter]
    406 | static int yaw_GAL(int sat, int opt, double beta, double mu, double *yaw)
    |                             ~~~~^~~
  pntpos.c: In function 'estvel':
  pntpos.c:495:54: warning: unused parameter 'opt' [-Wunused-parameter]
    495 |                    const nav_t *nav, const prcopt_t *opt, sol_t *sol,
    |                                      ~~~~~~~~~~~~~~~~^~~
  ppp.c: In function 'yaw_QZS':
  ppp.c:414:9: warning: using integer absolute value function 'abs' when argument is of floating-point type 'double' [-Wabsolute-value]
    414 |     if (abs(beta*R2D)<QZS_EC_BETA) *yaw=0.0;
    |         ^~~
  ppp.c:412:24: warning: unused parameter 'sat' [-Wunused-parameter]
    412 | static int yaw_QZS(int sat, int opt, double beta, double mu, double *yaw)
    |                    ~~~~^~~
  ppp.c:412:33: warning: unused parameter 'opt' [-Wunused-parameter]
    412 | static int yaw_QZS(int sat, int opt, double beta, double mu, double *yaw)
    |                             ~~~~^~~
  g++ -pipe -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -Wp,-D_GLIBCXX_ASSERTIONS -flto -fno-fat-lto-objects -Wall -Wextra -dM -E -o moc_predefs.h /usr/lib/qt/mkspecs/features/data/dummy.cpp
  ppp.c: In function 'varerr':
  ppp.c:508:26: warning: unused parameter 'sat' [-Wunused-parameter]
    508 | static double varerr(int sat, int sys, double el, int freq, int type,
    |                      ~~~~^~~
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o rcvraw.o rcvraw.c
  At top level:
  pntpos.c:22:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     22 | static const char rcsid[]="$Id:$";
    |                   ^~~~~
  ppp_corr.c: In function 'add_stec':
  ppp_corr.c:43:5: warning: missing initializer for field 'sat' of 'stec_t' [-Wmissing-field-initializers]
     43 |     stec_t *corr_stec,stec={{0}};
    |     ^~~~~~
  In file included from ppp_corr.c:10:
  rtklib.h:767:19: note: 'sat' declared here
    767 |     unsigned char sat;  /* satellite number */
    |                   ^~~
  ppp_corr.c: In function 'add_trop_ztd':
  ppp_corr.c:76:5: warning: missing initializer for field 'trp' of 'trop_t' [-Wmissing-field-initializers]
     76 |     trop_t *corr_trop,trop={{0}};
    |     ^~~~~~
  In file included from ppp_corr.c:10:
  rtklib.h:776:12: note: 'trp' declared here
    776 |     double trp[3];      /* zenith tropos delay/gradient (m) */
    |            ^~~
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o rinex.o rinex.c
  ppp.c: In function 'const_corr':
  ppp.c:1026:37: warning: unused parameter 'azel' [-Wunused-parameter]
   1026 |                       const double *azel, rtk_t *rtk, double *v, double *H,
    |                       ~~~~~~~~~~~~~~^~~~
  At top level:
  ppp_corr.c:12:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     12 | static const char rcsid[]="$Id:$";
    |                   ^~~~~
  postpos.c: In function 'procpos':
  postpos.c:354:5: warning: missing initializer for field 'rr' of 'sol_t' [-Wmissing-field-initializers]
    354 |     sol_t sol={{0}};
    |     ^~~~~
  In file included from postpos.c:39:
  rtklib.h:853:12: note: 'rr' declared here
    853 |     double rr[6];       /* position/velocity (m|m/s) */
    |            ^~
  postpos.c: In function 'combres':
  postpos.c:451:5: warning: missing initializer for field 'rr' of 'sol_t' [-Wmissing-field-initializers]
    451 |     sol_t sols={{0}},sol={{0}};
    |     ^~~~~
  In file included from postpos.c:39:
  rtklib.h:853:12: note: 'rr' declared here
    853 |     double rr[6];       /* position/velocity (m|m/s) */
    |            ^~
  postpos.c:451:5: warning: missing initializer for field 'rr' of 'sol_t' [-Wmissing-field-initializers]
    451 |     sol_t sols={{0}},sol={{0}};
    |     ^~~~~
  In file included from postpos.c:39:
  rtklib.h:853:12: note: 'rr' declared here
    853 |     double rr[6];       /* position/velocity (m|m/s) */
    |            ^~
  preceph.c: In function 'readsp3b':
  preceph.c:120:48: warning: unused parameter 'sats' [-Wunused-parameter]
    120 | static void readsp3b(FILE *fp, char type, int *sats, int ns, double *bfact,
    |                                           ~~~~~^~~~
  qzslex.c: In function 'decode_lexeph':
  qzslex.c:99:5: warning: missing initializer for field 'tof' of 'lexeph_t' [-Wmissing-field-initializers]
     99 |     lexeph_t eph={{0}};
    |     ^~~~~~~~
  postpos.c: In function 'avepos':
  postpos.c:704:5: warning: missing initializer for field 'rr' of 'sol_t' [-Wmissing-field-initializers]
    704 |     sol_t sol={{0}};
    |     ^~~~~
  In file included from qzslex.c:16:
  rtklib.h:745:13: note: 'tof' declared here
    745 |     gtime_t tof;        /* message frame time (GPST) */
    |             ^~~
  In file included from postpos.c:39:
  rtklib.h:853:12: note: 'rr' declared here
    853 |     double rr[6];       /* position/velocity (m|m/s) */
    |            ^~
  qzslex.c: In function 'decode_lexion':
  qzslex.c:156:5: warning: missing initializer for field 'tspan' of 'lexion_t' [-Wmissing-field-initializers]
    156 |     lexion_t ion={{0}};
    |     ^~~~~~~~
  In file included from qzslex.c:16:
  rtklib.h:760:12: note: 'tspan' declared here
    760 |     double tspan;       /* valid time span (s) */
    |            ^~~~~
  qzslex.c: In function 'lex2rtcm':
  postpos.c: In function 'antpos':
  qzslex.c:241:20: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
    241 |                    for (j=0;j<ns;j++) n+=11+getbitu(msg,i+n+6,5)*19; break;
    |                    ^~~
  qzslex.c:241:70: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
    241 |                    for (j=0;j<ns;j++) n+=11+getbitu(msg,i+n+6,5)*19; break;
    |                                                                      ^~~~~
  postpos.c:768:32: warning: unused parameter 'sta' [-Wunused-parameter]
    768 |                   const sta_t *sta, const char *posfile)
    |                   ~~~~~~~~~~~~~^~~
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o rtcm.o rtcm.c
  qzslex.c:248:20: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
    248 |                    for (j=0;j<ns;j++) n+=10+getbitu(msg,i+n+5,5)*19; break;
    |                    ^~~
  qzslex.c:248:70: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
    248 |                    for (j=0;j<ns;j++) n+=10+getbitu(msg,i+n+5,5)*19; break;
    |                                                                      ^~~~~
  qzslex.c:255:20: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
    255 |                    for (j=0;j<ns;j++) n+=11+getbitu(msg,i+n+6,5)*19; break;
    |                    ^~~
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o rtcm2.o rtcm2.c
  qzslex.c:255:70: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
    255 |                    for (j=0;j<ns;j++) n+=11+getbitu(msg,i+n+6,5)*19; break;
    |                                                                      ^~~~~
  postpos.c: In function 'openses':
  postpos.c:810:36: warning: unused parameter 'popt' [-Wunused-parameter]
    810 | static int openses(const prcopt_t *popt, const solopt_t *sopt,
    |                    ~~~~~~~~~~~~~~~~^~~~
  postpos.c:811:49: warning: unused parameter 'nav' [-Wunused-parameter]
    811 |                    const filopt_t *fopt, nav_t *nav, pcvs_t *pcvs, pcvs_t *pcvr)
    |                                          ~~~~~~~^~~
  qzslex.c:262:20: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
    262 |                    for (j=0;j<ns;j++) n+=9+getbitu(msg,i+n+4,5)*19; break;
    |                    ^~~
  ppp_ar.c:21:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     21 | static const char rcsid[]="$Id:$";
    |                   ^~~~~
  qzslex.c:262:69: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
    262 |                    for (j=0;j<ns;j++) n+=9+getbitu(msg,i+n+4,5)*19; break;
    |                                                                     ^~~~~
  qzslex.c: In function 'decode_lextype20':
  qzslex.c:372:45: warning: unused parameter 'msg' [-Wunused-parameter]
    372 | static int decode_lextype20(const lexmsg_t *msg, nav_t *nav, gtime_t *tof)
    |                             ~~~~~~~~~~~~~~~~^~~
  qzslex.c:372:57: warning: unused parameter 'nav' [-Wunused-parameter]
    372 | static int decode_lextype20(const lexmsg_t *msg, nav_t *nav, gtime_t *tof)
    |                                                  ~~~~~~~^~~
  qzslex.c:372:71: warning: unused parameter 'tof' [-Wunused-parameter]
    372 | static int decode_lextype20(const lexmsg_t *msg, nav_t *nav, gtime_t *tof)
    |                                                              ~~~~~~~~~^~~
  postpos.c: In function 'postpos':
  postpos.c:1313:17: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
   1313 |                 for (;i>=0;i--) free(ifile[i]); return -1;
    |                 ^~~
  postpos.c:1313:49: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
   1313 |                 for (;i>=0;i--) free(ifile[i]); return -1;
    |                                                 ^~~~~~
  At top level:
  ppp.c:62:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     62 | static const char rcsid[]="$Id:$";
    |                   ^~~~~
  At top level:
  preceph.c:46:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     46 | static const char rcsid[]="$Id:$";
    |                   ^~~~~
  At top level:
  qzslex.c:18:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     18 | static const char rcsid[]="$Id:$";
    |                   ^~~~~
  g++ -c -pipe -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -Wp,-D_GLIBCXX_ASSERTIONS -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -fPIC -DQT5 -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I. -I../../src -I/usr/include/qt -I/usr/include/qt/QtWidgets -I/usr/include/qt/QtGui -I/usr/include/qt/QtCore -I. -I. -I/usr/lib/qt/mkspecs/linux-g++ -o launchmain.o launchmain.cpp
  rcvraw.c: In function 'decode_gal_inav':
  rcvraw.c:104:19: warning: unused variable 'time2' [-Wunused-variable]
    104 |     gtime_t time1,time2;
    |                   ^~~~~
  rcvraw.c:104:13: warning: unused variable 'time1' [-Wunused-variable]
    104 |     gtime_t time1,time2;
    |             ^~~~~
  rcvraw.c: In function 'decode_gps_subfrm4':
  rcvraw.c:652:13: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
    652 |             if (alm) alm[sat-1].svconf=getbitu(buff,i,4); i+=4;
    |             ^~
  rcvraw.c:652:59: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
    652 |             if (alm) alm[sat-1].svconf=getbitu(buff,i,4); i+=4;
    |                                                           ^
  rcvraw.c:657:13: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
    657 |             if (alm) alm[sat-1].svh   =getbitu(buff,i,6); i+=6;
    |             ^~
  rcvraw.c:657:59: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
    657 |             if (alm) alm[sat-1].svh   =getbitu(buff,i,6); i+=6;
    |                                                           ^
  rcvraw.c: In function 'decode_qzs_subfrm45':
  rcvraw.c:721:64: warning: unused parameter 'leaps' [-Wunused-parameter]
    721 |                                 double *ion, double *utc, int *leaps)
    |                                                           ~~~~~^~~~~
  At top level:
  postpos.c:41:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     41 | static const char rcsid[]="$Id: postpos.c,v 1.1 2008/07/17 21:48:06 ttaka Exp $";
    |                   ^~~~~
  rcvraw.c: In function 'init_raw':
  rcvraw.c:845:5: warning: missing initializer for field 'sat' of 'obsd_t' [-Wmissing-field-initializers]
    845 |     obsd_t data0={{0}};
    |     ^~~~~~
  In file included from rcvraw.c:36:
  rtklib.h:476:19: note: 'sat' declared here
    476 |     unsigned char sat,rcv; /* satellite/receiver number */
    |                   ^~~
  rcvraw.c:846:5: warning: missing initializer for field 'sva' of 'eph_t' [-Wmissing-field-initializers]
    846 |     eph_t  eph0 ={0,-1,-1};
    |     ^~~~~
  In file included from rcvraw.c:36:
  rtklib.h:533:9: note: 'sva' declared here
    533 |     int sva;            /* SV accuracy (URA index) */
    |         ^~~
  rcvraw.c:847:5: warning: missing initializer for field 'svconf' of 'alm_t' [-Wmissing-field-initializers]
    847 |     alm_t  alm0 ={0,-1};
    |     ^~~~~
  In file included from rcvraw.c:36:
  rtklib.h:521:9: note: 'svconf' declared here
    521 |     int svconf;         /* as and sv config */
    |         ^~~~~~
  rcvraw.c:848:5: warning: missing initializer for field 'frq' of 'geph_t' [-Wmissing-field-initializers]
    848 |     geph_t geph0={0,-1};
    |     ^~~~~~
  In file included from rcvraw.c:36:
  rtklib.h:555:9: note: 'frq' declared here
    555 |     int frq;            /* satellite frequency number */
    |         ^~~
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o rtcm3.o rtcm3.c
  At top level:
  rcvraw.c:39:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     39 | static const char rcsid[]="$Id:$";
    |                   ^~~~~
  rinex.c: In function 'decode_obsh':
  rinex.c:441:52: warning: suggest braces around empty body in an 'if' statement [-Wempty-body]
    441 |     else if (strstr(label,"PRN / # OF OBS"      )) ; /* opt */
    |                                                    ^
  rinex.c: In function 'set_index':
  rinex.c:841:30: warning: unused parameter 'ver' [-Wunused-parameter]
    841 | static void set_index(double ver, int sys, const char *opt,
    |                       ~~~~~~~^~~
  rtcm.c: In function 'init_rtcm':
  rtcm.c:69:5: warning: missing initializer for field 'sat' of 'obsd_t' [-Wmissing-field-initializers]
     69 |     obsd_t data0={{0}};
    |     ^~~~~~
  In file included from rtcm.c:46:
  rtklib.h:476:19: note: 'sat' declared here
    476 |     unsigned char sat,rcv; /* satellite/receiver number */
    |                   ^~~
  rtcm.c:70:5: warning: missing initializer for field 'sva' of 'eph_t' [-Wmissing-field-initializers]
     70 |     eph_t  eph0 ={0,-1,-1};
    |     ^~~~~
  In file included from rtcm.c:46:
  rtklib.h:533:9: note: 'sva' declared here
    533 |     int sva;            /* SV accuracy (URA index) */
    |         ^~~
  rtcm.c:71:5: warning: missing initializer for field 'frq' of 'geph_t' [-Wmissing-field-initializers]
     71 |     geph_t geph0={0,-1};
    |     ^~~~~~
  In file included from rtcm.c:46:
  rtklib.h:555:9: note: 'frq' declared here
    555 |     int frq;            /* satellite frequency number */
    |         ^~~
  rtcm.c:72:5: warning: missing initializer for field 'udi' of 'ssr_t' [-Wmissing-field-initializers]
     72 |     ssr_t ssr0={{{0}}};
    |     ^~~~~
  In file included from rtcm.c:46:
  rtklib.h:711:12: note: 'udi' declared here
    711 |     double udi[6];      /* SSR update interval (s) */
    |            ^~~
  At top level:
  rtcm.c:48:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     48 | static const char rcsid[]="$Id:$";
    |                   ^~~~~
  rinex.c: In function 'readrnxc':
  rinex.c:1589:13: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
   1589 |             for (i--;i>=0;i--) free(files[i]); return 0;
    |             ^~~
  rinex.c:1589:48: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
   1589 |             for (i--;i>=0;i--) free(files[i]); return 0;
    |                                                ^~~~~~
  rinex.c: In function 'init_rnxctr':
  rinex.c:1621:5: warning: missing initializer for field 'sat' of 'obsd_t' [-Wmissing-field-initializers]
   1621 |     obsd_t data0={{0}};
    |     ^~~~~~
  In file included from rinex.c:85:
  rtklib.h:476:19: note: 'sat' declared here
    476 |     unsigned char sat,rcv; /* satellite/receiver number */
    |                   ^~~
  rinex.c:1622:5: warning: missing initializer for field 'sva' of 'eph_t' [-Wmissing-field-initializers]
   1622 |     eph_t  eph0={0,-1,-1};
    |     ^~~~~
  In file included from rinex.c:85:
  rtklib.h:533:9: note: 'sva' declared here
    533 |     int sva;            /* SV accuracy (URA index) */
    |         ^~~
  rinex.c:1623:5: warning: missing initializer for field 'frq' of 'geph_t' [-Wmissing-field-initializers]
   1623 |     geph_t geph0={0,-1};
    |     ^~~~~~
  In file included from rinex.c:85:
  rtklib.h:555:9: note: 'frq' declared here
    555 |     int frq;            /* satellite frequency number */
    |         ^~~
  g++ -c -pipe -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -Wp,-D_GLIBCXX_ASSERTIONS -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -fPIC -DQT5 -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I. -I../../src -I/usr/include/qt -I/usr/include/qt/QtWidgets -I/usr/include/qt/QtGui -I/usr/include/qt/QtCore -I. -I. -I/usr/lib/qt/mkspecs/linux-g++ -o main.o main.cpp
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o rtcm3e.o rtcm3e.c
  rtcm2.c: In function 'decode_type23':
  rtcm2.c:332:34: warning: unused parameter 'rtcm' [-Wunused-parameter]
    332 | static int decode_type23(rtcm_t *rtcm)
    |                          ~~~~~~~~^~~~
  rtcm2.c: In function 'decode_type24':
  rtcm2.c:337:34: warning: unused parameter 'rtcm' [-Wunused-parameter]
    337 | static int decode_type24(rtcm_t *rtcm)
    |                          ~~~~~~~~^~~~
  rinex.c: In function 'outrnxgnavh':
  rtcm2.c: In function 'decode_type31':
  rtcm2.c:342:34: warning: unused parameter 'rtcm' [-Wunused-parameter]
    342 | static int decode_type31(rtcm_t *rtcm)
    |                          ~~~~~~~~^~~~
  rtcm2.c: In function 'decode_type32':
  rtcm2.c:347:34: warning: unused parameter 'rtcm' [-Wunused-parameter]
    347 | static int decode_type32(rtcm_t *rtcm)
    |                          ~~~~~~~~^~~~
  rinex.c:2310:68: warning: unused parameter 'nav' [-Wunused-parameter]
   2310 | extern int outrnxgnavh(FILE *fp, const rnxopt_t *opt, const nav_t *nav)
    |                                                       ~~~~~~~~~~~~~^~~
  rtcm2.c: In function 'decode_type34':
  rtcm2.c:352:34: warning: unused parameter 'rtcm' [-Wunused-parameter]
    352 | static int decode_type34(rtcm_t *rtcm)
    |                          ~~~~~~~~^~~~
  rtcm2.c: In function 'decode_type36':
  rtcm2.c:357:34: warning: unused parameter 'rtcm' [-Wunused-parameter]
    357 | static int decode_type36(rtcm_t *rtcm)
    |                          ~~~~~~~~^~~~
  rtcm2.c: In function 'decode_type37':
  rtcm2.c:362:34: warning: unused parameter 'rtcm' [-Wunused-parameter]
    362 | static int decode_type37(rtcm_t *rtcm)
    |                          ~~~~~~~~^~~~
  rtcm2.c: In function 'decode_type59':
  rtcm2.c:367:34: warning: unused parameter 'rtcm' [-Wunused-parameter]
    367 | static int decode_type59(rtcm_t *rtcm)
    |                          ~~~~~~~~^~~~
  rinex.c: In function 'outrnxhnavh':
  rinex.c:2402:68: warning: unused parameter 'nav' [-Wunused-parameter]
   2402 | extern int outrnxhnavh(FILE *fp, const rnxopt_t *opt, const nav_t *nav)
    |                                                       ~~~~~~~~~~~~~^~~
  rinex.c: In function 'outrnxlnavh':
  rinex.c:2489:68: warning: unused parameter 'nav' [-Wunused-parameter]
   2489 | extern int outrnxlnavh(FILE *fp, const rnxopt_t *opt, const nav_t *nav)
    |                                                       ~~~~~~~~~~~~~^~~
  rinex.c: In function 'outrnxqnavh':
  rinex.c:2517:68: warning: unused parameter 'nav' [-Wunused-parameter]
   2517 | extern int outrnxqnavh(FILE *fp, const rnxopt_t *opt, const nav_t *nav)
    |                                                       ~~~~~~~~~~~~~^~~
  rinex.c: In function 'outrnxcnavh':
  At top level:
  rinex.c:2545:68: warning: unused parameter 'nav' [-Wunused-parameter]
   2545 | extern int outrnxcnavh(FILE *fp, const rnxopt_t *opt, const nav_t *nav)
    |                                                       ~~~~~~~~~~~~~^~~
  rtcm2.c:15:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     15 | static const char rcsid[]="$Id:$";
    |                   ^~~~~
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o rtkpos.o rtkpos.c
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o rtksvr.o rtksvr.c
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o sbas.o sbas.c
  g++ -c -pipe -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -Wp,-D_GLIBCXX_ASSERTIONS -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -fPIC -DQT5 -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I. -I../../src -I/usr/include/qt -I/usr/include/qt/QtWidgets -I/usr/include/qt/QtGui -I/usr/include/qt/QtCore -I. -I. -I/usr/lib/qt/mkspecs/linux-g++ -o qrc_rtklaunch_qt.o qrc_rtklaunch_qt.cpp
  At top level:
  rinex.c:87:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     87 | static const char rcsid[]="$Id:$";
    |                   ^~~~~
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o solution.o solution.c
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o stream.o stream.c
  rtcm3.c: In function 'decode_type1013':
  rtcm3.c:658:36: warning: unused parameter 'rtcm' [-Wunused-parameter]
    658 | static int decode_type1013(rtcm_t *rtcm)
    |                            ~~~~~~~~^~~~
  rtcm3.c: In function 'decode_type1021':
  rtcm3.c:800:36: warning: unused parameter 'rtcm' [-Wunused-parameter]
    800 | static int decode_type1021(rtcm_t *rtcm)
    |                            ~~~~~~~~^~~~
  rtcm3.c: In function 'decode_type1022':
  rtcm3.c:806:36: warning: unused parameter 'rtcm' [-Wunused-parameter]
    806 | static int decode_type1022(rtcm_t *rtcm)
    |                            ~~~~~~~~^~~~
  rtcm3.c: In function 'decode_type1023':
  rtcm3.c:812:36: warning: unused parameter 'rtcm' [-Wunused-parameter]
    812 | static int decode_type1023(rtcm_t *rtcm)
    |                            ~~~~~~~~^~~~
  rtcm3.c: In function 'decode_type1024':
  rtcm3.c:818:36: warning: unused parameter 'rtcm' [-Wunused-parameter]
    818 | static int decode_type1024(rtcm_t *rtcm)
    |                            ~~~~~~~~^~~~
  rtcm3.c: In function 'decode_type1025':
  rtcm3.c:824:36: warning: unused parameter 'rtcm' [-Wunused-parameter]
    824 | static int decode_type1025(rtcm_t *rtcm)
    |                            ~~~~~~~~^~~~
  rtcm3.c: In function 'decode_type1026':
  rtcm3.c:830:36: warning: unused parameter 'rtcm' [-Wunused-parameter]
    830 | static int decode_type1026(rtcm_t *rtcm)
    |                            ~~~~~~~~^~~~
  rtcm3.c: In function 'decode_type1027':
  rtcm3.c:836:36: warning: unused parameter 'rtcm' [-Wunused-parameter]
    836 | static int decode_type1027(rtcm_t *rtcm)
    |                            ~~~~~~~~^~~~
  rtcm3.c: In function 'decode_type1030':
  rtcm3.c:842:36: warning: unused parameter 'rtcm' [-Wunused-parameter]
    842 | static int decode_type1030(rtcm_t *rtcm)
    |                            ~~~~~~~~^~~~
  rtcm3.c: In function 'decode_type1031':
  rtcm3.c:848:36: warning: unused parameter 'rtcm' [-Wunused-parameter]
    848 | static int decode_type1031(rtcm_t *rtcm)
    |                            ~~~~~~~~^~~~
  rtcm3.c: In function 'decode_type1032':
  rtcm3.c:854:36: warning: unused parameter 'rtcm' [-Wunused-parameter]
    854 | static int decode_type1032(rtcm_t *rtcm)
    |                            ~~~~~~~~^~~~
  rtcm3.c: In function 'decode_type1034':
  rtcm3.c:916:36: warning: unused parameter 'rtcm' [-Wunused-parameter]
    916 | static int decode_type1034(rtcm_t *rtcm)
    |                            ~~~~~~~~^~~~
  rtcm3.c: In function 'decode_type1035':
  rtcm3.c:922:36: warning: unused parameter 'rtcm' [-Wunused-parameter]
    922 | static int decode_type1035(rtcm_t *rtcm)
    |                            ~~~~~~~~^~~~
  rtcm3.c: In function 'decode_type1037':
  rtcm3.c:928:36: warning: unused parameter 'rtcm' [-Wunused-parameter]
    928 | static int decode_type1037(rtcm_t *rtcm)
    |                            ~~~~~~~~^~~~
  rtcm3.c: In function 'decode_type1038':
  rtcm3.c:934:36: warning: unused parameter 'rtcm' [-Wunused-parameter]
    934 | static int decode_type1038(rtcm_t *rtcm)
    |                            ~~~~~~~~^~~~
  rtcm3.c: In function 'decode_type1039':
  rtcm3.c:940:36: warning: unused parameter 'rtcm' [-Wunused-parameter]
    940 | static int decode_type1039(rtcm_t *rtcm)
    |                            ~~~~~~~~^~~~
  rtkpos.c: In function 'resamb_WLNL':
  rtkpos.c:93:31: warning: unused parameter 'rtk' [-Wunused-parameter]
     93 | extern int resamb_WLNL(rtk_t *rtk, const obsd_t *obs, const int *sat,
    |                        ~~~~~~~^~~
  rtkpos.c:93:50: warning: unused parameter 'obs' [-Wunused-parameter]
     93 | extern int resamb_WLNL(rtk_t *rtk, const obsd_t *obs, const int *sat,
    |                                    ~~~~~~~~~~~~~~^~~
  rtkpos.c:93:66: warning: unused parameter 'sat' [-Wunused-parameter]
     93 | extern int resamb_WLNL(rtk_t *rtk, const obsd_t *obs, const int *sat,
    |                                                       ~~~~~~~~~~~^~~
  rtkpos.c:94:35: warning: unused parameter 'iu' [-Wunused-parameter]
     94 |                        const int *iu, const int *ir, int ns, const nav_t *nav,
    |                        ~~~~~~~~~~~^~
  rtkpos.c:94:50: warning: unused parameter 'ir' [-Wunused-parameter]
     94 |                        const int *iu, const int *ir, int ns, const nav_t *nav,
    |                                       ~~~~~~~~~~~^~
  rtkpos.c:94:58: warning: unused parameter 'ns' [-Wunused-parameter]
     94 |                        const int *iu, const int *ir, int ns, const nav_t *nav,
    |                                                      ~~~~^~
  rtkpos.c:94:75: warning: unused parameter 'nav' [-Wunused-parameter]
     94 |                        const int *iu, const int *ir, int ns, const nav_t *nav,
    |                                                              ~~~~~~~~~~~~~^~~
  rtkpos.c:95:38: warning: unused parameter 'azel' [-Wunused-parameter]
     95 |                        const double *azel) {return 0;}
    |                        ~~~~~~~~~~~~~~^~~~
  rtkpos.c: In function 'resamb_TCAR':
  rtkpos.c:96:31: warning: unused parameter 'rtk' [-Wunused-parameter]
     96 | extern int resamb_TCAR(rtk_t *rtk, const obsd_t *obs, const int *sat,
    |                        ~~~~~~~^~~
  rtkpos.c:96:50: warning: unused parameter 'obs' [-Wunused-parameter]
     96 | extern int resamb_TCAR(rtk_t *rtk, const obsd_t *obs, const int *sat,
    |                                    ~~~~~~~~~~~~~~^~~
  rtkpos.c:96:66: warning: unused parameter 'sat' [-Wunused-parameter]
     96 | extern int resamb_TCAR(rtk_t *rtk, const obsd_t *obs, const int *sat,
    |                                                       ~~~~~~~~~~~^~~
  rtkpos.c:97:35: warning: unused parameter 'iu' [-Wunused-parameter]
     97 |                        const int *iu, const int *ir, int ns, const nav_t *nav,
    |                        ~~~~~~~~~~~^~
  rtkpos.c:97:50: warning: unused parameter 'ir' [-Wunused-parameter]
     97 |                        const int *iu, const int *ir, int ns, const nav_t *nav,
    |                                       ~~~~~~~~~~~^~
  rtkpos.c:97:58: warning: unused parameter 'ns' [-Wunused-parameter]
     97 |                        const int *iu, const int *ir, int ns, const nav_t *nav,
    |                                                      ~~~~^~
  rtkpos.c:97:75: warning: unused parameter 'nav' [-Wunused-parameter]
     97 |                        const int *iu, const int *ir, int ns, const nav_t *nav,
    |                                                              ~~~~~~~~~~~~~^~~
  rtkpos.c:98:38: warning: unused parameter 'azel' [-Wunused-parameter]
     98 |                        const double *azel) {return 0;}
    |                        ~~~~~~~~~~~~~~^~~~
  rtkpos.c: In function 'varerr':
  rtkpos.c:391:26: warning: unused parameter 'sat' [-Wunused-parameter]
    391 | static double varerr(int sat, int sys, double el, double bl, double dt, int f,
    |                      ~~~~^~~
  rtkpos.c: In function 'udpos':
  rtkpos.c:482:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
    482 |     for (i=0;i<3;i++) var+=rtk->P[i+i*rtk->nx]; var/=3.0;
    |     ^~~
  rtkpos.c:482:49: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
    482 |     for (i=0;i<3;i++) var+=rtk->P[i+i*rtk->nx]; var/=3.0;
    |                                                 ^~~
  rtkpos.c: In function 'udtrop':
  rtkpos.c:542:50: warning: unused parameter 'bl' [-Wunused-parameter]
    542 | static void udtrop(rtk_t *rtk, double tt, double bl)
    |                                           ~~~~~~~^~
  rtksvr.c: In function 'rtksvrinit':
  rtksvr.c:536:5: warning: missing initializer for field 'rr' of 'sol_t' [-Wmissing-field-initializers]
    536 |     sol_t  sol0 ={{0}};
    |     ^~~~~
  rtkpos.c: In function 'detslp_dop':
  In file included from rtksvr.c:32:
  rtklib.h:853:12: note: 'rr' declared here
    853 |     double rr[6];       /* position/velocity (m|m/s) */
    |            ^~
  rtkpos.c:669:31: warning: unused parameter 'rtk' [-Wunused-parameter]
    669 | static void detslp_dop(rtk_t *rtk, const obsd_t *obs, int i, int rcv,
    |                        ~~~~~~~^~~
  rtksvr.c:537:5: warning: missing initializer for field 'sva' of 'eph_t' [-Wmissing-field-initializers]
    537 |     eph_t  eph0 ={0,-1,-1};
    |     ^~~~~
  In file included from rtksvr.c:32:
  rtklib.h:533:9: note: 'sva' declared here
    533 |     int sva;            /* SV accuracy (URA index) */
    |         ^~~
  rtkpos.c:669:50: warning: unused parameter 'obs' [-Wunused-parameter]
    669 | static void detslp_dop(rtk_t *rtk, const obsd_t *obs, int i, int rcv,
    |                                    ~~~~~~~~~~~~~~^~~
  rtksvr.c:538:5: warning: missing initializer for field 'frq' of 'geph_t' [-Wmissing-field-initializers]
    538 |     geph_t geph0={0,-1};
    |     ^~~~~~
  In file included from rtksvr.c:32:
  rtklib.h:555:9: note: 'frq' declared here
    555 |     int frq;            /* satellite frequency number */
    |         ^~~
  rtkpos.c:669:59: warning: unused parameter 'i' [-Wunused-parameter]
    669 | static void detslp_dop(rtk_t *rtk, const obsd_t *obs, int i, int rcv,
    |                                                       ~~~~^
  rtkpos.c:669:66: warning: unused parameter 'rcv' [-Wunused-parameter]
    669 | static void detslp_dop(rtk_t *rtk, const obsd_t *obs, int i, int rcv,
    |                                                              ~~~~^~~
  rtkpos.c:670:37: warning: unused parameter 'nav' [-Wunused-parameter]
    670 |                        const nav_t *nav)
    |                        ~~~~~~~~~~~~~^~~
  sbas.c: In function 'searchigp':
  sbas.c:602:31: warning: unused parameter 'time' [-Wunused-parameter]
    602 | static void searchigp(gtime_t time, const double *pos, const sbsion_t *ion,
    |                       ~~~~~~~~^~~~
  rtcm3.c: In function 'decode_type1230':
  rtcm3.c:2239:36: warning: unused parameter 'rtcm' [-Wunused-parameter]
   2239 | static int decode_type1230(rtcm_t *rtcm)
    |                            ~~~~~~~~^~~~
  rtkpos.c: In function 'gloicbcorr':
  rtkpos.c:1021:30: warning: unused parameter 'sat1' [-Wunused-parameter]
   1021 | static double gloicbcorr(int sat1, int sat2, const prcopt_t *opt, double lam1,
    |                          ~~~~^~~~
  rtkpos.c:1021:40: warning: unused parameter 'sat2' [-Wunused-parameter]
   1021 | static double gloicbcorr(int sat1, int sat2, const prcopt_t *opt, double lam1,
    |                                    ~~~~^~~~
  /usr/bin/moc -DQT5 -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB --include /home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/rtklaunch_qt/moc_predefs.h -I/usr/lib/qt/mkspecs/linux-g++ -I/home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/rtklaunch_qt -I/home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/src -I/usr/include/qt -I/usr/include/qt/QtWidgets -I/usr/include/qt/QtGui -I/usr/include/qt/QtCore -I/usr/include/c++/11.2.0 -I/usr/include/c++/11.2.0/x86_64-pc-linux-gnu -I/usr/include/c++/11.2.0/backward -I/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include -I/usr/local/include -I/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed -I/usr/include launchmain.h -o moc_launchmain.cpp
  At top level:
  geoid.c:18:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     18 | static const char rcsid[]="$Id: geoid.c,v 1.1 2008/07/17 21:48:06 ttaka Exp $";
    |                   ^~~~~
  At top level:
  rtksvr.c:34:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     34 | static const char rcsid[]="$Id:$";
    |                   ^~~~~
  rtcm3e.c: In function 'gen_msm_sat':
  rtcm3e.c:1782:52: warning: unused parameter 'nsat' [-Wunused-parameter]
   1782 | static void gen_msm_sat(rtcm_t *rtcm, int sys, int nsat,
    |                                                ~~~~^~~~
  rtkpos.c: In function 'restamb':
  rtkpos.c:1316:57: warning: unused parameter 'nb' [-Wunused-parameter]
   1316 | static void restamb(rtk_t *rtk, const double *bias, int nb, double *xa)
    |                                                     ~~~~^~
  rtcm3e.c: In function 'gen_msm_sig':
  rtcm3e.c:1814:52: warning: unused parameter 'nsat' [-Wunused-parameter]
   1814 | static void gen_msm_sig(rtcm_t *rtcm, int sys, int nsat, int nsig, int ncell,
    |                                                ~~~~^~~~
  solution.c: In function 'decode_solgsi':
  solution.c:461:54: warning: unused parameter 'opt' [-Wunused-parameter]
    461 | static int decode_solgsi(char *buff, const solopt_t *opt, sol_t *sol)
    |                                      ~~~~~~~~~~~~~~~~^~~
  solution.c: In function 'decode_solpos':
  solution.c:479:5: warning: missing initializer for field 'rr' of 'sol_t' [-Wmissing-field-initializers]
    479 |     sol_t sol0={{0}};
    |     ^~~~~
  In file included from solution.c:46:
  rtklib.h:853:12: note: 'rr' declared here
    853 |     double rr[6];       /* position/velocity (m|m/s) */
    |            ^~
  solution.c: In function 'inputsol':
  solution.c:618:5: warning: missing initializer for field 'rr' of 'sol_t' [-Wmissing-field-initializers]
    618 |     sol_t sol={{0}};
    |     ^~~~~
  In file included from solution.c:46:
  rtklib.h:853:12: note: 'rr' declared here
    853 |     double rr[6];       /* position/velocity (m|m/s) */
    |            ^~
  At top level:
  sbas.c:40:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     40 | static const char rcsid[]="$Id: sbas.c,v 1.1 2008/07/17 21:48:06 ttaka Exp $";
    |                   ^~~~~
  solution.c: In function 'decode_solstat':
  solution.c:868:5: warning: missing initializer for field 'sat' of 'solstat_t' [-Wmissing-field-initializers]
    868 |     static const solstat_t stat0={{0}};
    |     ^~~~~~
  In file included from solution.c:46:
  rtklib.h:880:19: note: 'sat' declared here
    880 |     unsigned char sat;  /* satellite number */
    |                   ^~~
  rtkpos.c: In function 'rtkinit':
  rtkpos.c:1703:5: warning: missing initializer for field 'rr' of 'sol_t' [-Wmissing-field-initializers]
   1703 |     sol_t sol0={{0}};
    |     ^~~~~
  solution.c: In function 'readsolstatdata':
  In file included from rtkpos.c:40:
  rtklib.h:853:12: note: 'rr' declared here
    853 |     double rr[6];       /* position/velocity (m|m/s) */
    |            ^~
  solution.c:930:5: warning: missing initializer for field 'sat' of 'solstat_t' [-Wmissing-field-initializers]
    930 |     solstat_t stat={{0}};
    |     ^~~~~~~~~
  In file included from solution.c:46:
  rtklib.h:880:19: note: 'sat' declared here
    880 |     unsigned char sat;  /* satellite number */
    |                   ^~~
  rtkpos.c:1704:5: warning: missing initializer for field 'n' of 'ambc_t' [-Wmissing-field-initializers]
   1704 |     ambc_t ambc0={{{0}}};
    |     ^~~~~~
  In file included from rtkpos.c:40:
  rtklib.h:1123:9: note: 'n' declared here
   1123 |     int n[4];           /* number of epochs */
    |         ^
  rtkpos.c: In function 'rtkpos':
  rtkpos.c:1803:5: warning: missing initializer for field 'rr' of 'sol_t' [-Wmissing-field-initializers]
   1803 |     sol_t solb={{0}};
    |     ^~~~~
  In file included from rtkpos.c:40:
  rtklib.h:853:12: note: 'rr' declared here
    853 |     double rr[6];       /* position/velocity (m|m/s) */
    |            ^~
  At top level:
  rtcm3.c:36:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     36 | static const char rcsid[]="$Id:$";
    |                   ^~~~~
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o streamsvr.o streamsvr.c
  At top level:
  rtkpos.c:42:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     42 | static const char rcsid[]="$Id:$";
    |                   ^~~~~
  At top level:
  rtcm3e.c:38:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     38 | static const char rcsid[]="$Id:$";
    |                   ^~~~~
  At top level:
  solution.c:48:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     48 | static const char rcsid[]="$Id: solution.c,v 1.1 2008/07/17 21:48:06 ttaka Exp $";
    |                   ^~~~~
  stream.c: In function 'readserial':
  stream.c:410:75: warning: unused parameter 'msg' [-Wunused-parameter]
    410 | static int readserial(serial_t *serial, unsigned char *buff, int n, char *msg)
    |                                                                     ~~~~~~^~~
  stream.c: In function 'writeserial':
  stream.c:428:76: warning: unused parameter 'msg' [-Wunused-parameter]
    428 | static int writeserial(serial_t *serial, unsigned char *buff, int n, char *msg)
    |                                                                      ~~~~~~^~~
  stream.c: In function 'readfile':
  stream.c:653:35: warning: comparison of unsigned expression in '< 0' is always false [-Wtype-limits]
    653 |         if ((nr=read(0,buff,nmax))<0) return 0;
    |                                   ^
  stream.c: In function 'opentcpsvr':
  stream.c:973:5: warning: missing initializer for field 'cli' of 'tcpsvr_t' [-Wmissing-field-initializers]
    973 |     tcpsvr_t *tcpsvr,tcpsvr0={{0}};
    |     ^~~~~~~~
  stream.c:156:11: note: 'cli' declared here
    156 |     tcp_t cli[MAXCLI];      /* tcp client controls */
    |           ^~~
  stream.c: In function 'opentcpcli':
  stream.c:1169:5: warning: missing initializer for field 'toinact' of 'tcpcli_t' [-Wmissing-field-initializers]
   1169 |     tcpcli_t *tcpcli,tcpcli0={{0}};
    |     ^~~~~~~~
  stream.c:161:9: note: 'toinact' declared here
    161 |     int toinact;            /* inactive timeout (ms) (0:no timeout) */
    |         ^~~~~~~
  stream.c: In function 'strsendnmea':
  stream.c:2169:5: warning: missing initializer for field 'rr' of 'sol_t' [-Wmissing-field-initializers]
   2169 |     sol_t sol={{0}};
    |     ^~~~~
  In file included from stream.c:51:
  rtklib.h:853:12: note: 'rr' declared here
    853 |     double rr[6];       /* position/velocity (m|m/s) */
    |            ^~
  streamsvr.c: In function 'write_nav':
  streamsvr.c:216:31: warning: unused parameter 'time' [-Wunused-parameter]
    216 | static void write_nav(gtime_t time, stream_t *str, strconv_t *conv)
    |                       ~~~~~~~~^~~~
  At top level:
  streamsvr.c:20:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     20 | static const char rcsid[]="$Id$";
    |                   ^~~~~
  At top level:
  stream.c:70:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     70 | static const char rcsid[]="$Id$";
    |                   ^~~~~
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o tides.o tides.c
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o tle.o tle.c
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o binex.o rcv/binex.c
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o crescent.o rcv/crescent.c
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o gw10.o rcv/gw10.c
  rcv/binex.c: In function 'decode_bnx_00_00':
  rcv/binex.c:130:36: warning: unused parameter 'raw' [-Wunused-parameter]
    130 | static int decode_bnx_00_00(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:130:56: warning: unused parameter 'buff' [-Wunused-parameter]
    130 | static int decode_bnx_00_00(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:130:66: warning: unused parameter 'len' [-Wunused-parameter]
    130 | static int decode_bnx_00_00(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_01':
  rcv/binex.c:136:36: warning: unused parameter 'raw' [-Wunused-parameter]
    136 | static int decode_bnx_00_01(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:136:56: warning: unused parameter 'buff' [-Wunused-parameter]
    136 | static int decode_bnx_00_01(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:136:66: warning: unused parameter 'len' [-Wunused-parameter]
    136 | static int decode_bnx_00_01(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_02':
  rcv/binex.c:142:36: warning: unused parameter 'raw' [-Wunused-parameter]
    142 | static int decode_bnx_00_02(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:142:56: warning: unused parameter 'buff' [-Wunused-parameter]
    142 | static int decode_bnx_00_02(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:142:66: warning: unused parameter 'len' [-Wunused-parameter]
    142 | static int decode_bnx_00_02(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_03':
  rcv/binex.c:148:36: warning: unused parameter 'raw' [-Wunused-parameter]
    148 | static int decode_bnx_00_03(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:148:56: warning: unused parameter 'buff' [-Wunused-parameter]
    148 | static int decode_bnx_00_03(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:148:66: warning: unused parameter 'len' [-Wunused-parameter]
    148 | static int decode_bnx_00_03(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_04':
  rcv/binex.c:154:36: warning: unused parameter 'raw' [-Wunused-parameter]
    154 | static int decode_bnx_00_04(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:154:56: warning: unused parameter 'buff' [-Wunused-parameter]
    154 | static int decode_bnx_00_04(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:154:66: warning: unused parameter 'len' [-Wunused-parameter]
    154 | static int decode_bnx_00_04(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_05':
  rcv/binex.c:160:36: warning: unused parameter 'raw' [-Wunused-parameter]
    160 | static int decode_bnx_00_05(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:160:56: warning: unused parameter 'buff' [-Wunused-parameter]
    160 | static int decode_bnx_00_05(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:160:66: warning: unused parameter 'len' [-Wunused-parameter]
    160 | static int decode_bnx_00_05(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_06':
  rcv/binex.c:166:36: warning: unused parameter 'raw' [-Wunused-parameter]
    166 | static int decode_bnx_00_06(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:166:56: warning: unused parameter 'buff' [-Wunused-parameter]
    166 | static int decode_bnx_00_06(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:166:66: warning: unused parameter 'len' [-Wunused-parameter]
    166 | static int decode_bnx_00_06(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_07':
  rcv/binex.c:172:36: warning: unused parameter 'raw' [-Wunused-parameter]
    172 | static int decode_bnx_00_07(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:172:56: warning: unused parameter 'buff' [-Wunused-parameter]
    172 | static int decode_bnx_00_07(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:172:66: warning: unused parameter 'len' [-Wunused-parameter]
    172 | static int decode_bnx_00_07(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_08':
  rcv/binex.c:178:36: warning: unused parameter 'raw' [-Wunused-parameter]
    178 | static int decode_bnx_00_08(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:178:56: warning: unused parameter 'buff' [-Wunused-parameter]
    178 | static int decode_bnx_00_08(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:178:66: warning: unused parameter 'len' [-Wunused-parameter]
    178 | static int decode_bnx_00_08(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_09':
  rcv/binex.c:184:36: warning: unused parameter 'raw' [-Wunused-parameter]
    184 | static int decode_bnx_00_09(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:184:56: warning: unused parameter 'buff' [-Wunused-parameter]
    184 | static int decode_bnx_00_09(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:184:66: warning: unused parameter 'len' [-Wunused-parameter]
    184 | static int decode_bnx_00_09(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_0a':
  rcv/binex.c:190:36: warning: unused parameter 'raw' [-Wunused-parameter]
    190 | static int decode_bnx_00_0a(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:190:56: warning: unused parameter 'buff' [-Wunused-parameter]
    190 | static int decode_bnx_00_0a(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:190:66: warning: unused parameter 'len' [-Wunused-parameter]
    190 | static int decode_bnx_00_0a(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_0b':
  rcv/binex.c:196:36: warning: unused parameter 'raw' [-Wunused-parameter]
    196 | static int decode_bnx_00_0b(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:196:56: warning: unused parameter 'buff' [-Wunused-parameter]
    196 | static int decode_bnx_00_0b(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:196:66: warning: unused parameter 'len' [-Wunused-parameter]
    196 | static int decode_bnx_00_0b(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_0c':
  rcv/binex.c:202:36: warning: unused parameter 'raw' [-Wunused-parameter]
    202 | static int decode_bnx_00_0c(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:202:56: warning: unused parameter 'buff' [-Wunused-parameter]
    202 | static int decode_bnx_00_0c(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:202:66: warning: unused parameter 'len' [-Wunused-parameter]
    202 | static int decode_bnx_00_0c(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_0d':
  rcv/binex.c:208:36: warning: unused parameter 'raw' [-Wunused-parameter]
    208 | static int decode_bnx_00_0d(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:208:56: warning: unused parameter 'buff' [-Wunused-parameter]
    208 | static int decode_bnx_00_0d(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:208:66: warning: unused parameter 'len' [-Wunused-parameter]
    208 | static int decode_bnx_00_0d(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_0e':
  rcv/binex.c:214:36: warning: unused parameter 'raw' [-Wunused-parameter]
    214 | static int decode_bnx_00_0e(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:214:56: warning: unused parameter 'buff' [-Wunused-parameter]
    214 | static int decode_bnx_00_0e(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:214:66: warning: unused parameter 'len' [-Wunused-parameter]
    214 | static int decode_bnx_00_0e(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_0f':
  rcv/binex.c:220:36: warning: unused parameter 'raw' [-Wunused-parameter]
    220 | static int decode_bnx_00_0f(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:220:56: warning: unused parameter 'buff' [-Wunused-parameter]
    220 | static int decode_bnx_00_0f(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:220:66: warning: unused parameter 'len' [-Wunused-parameter]
    220 | static int decode_bnx_00_0f(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_10':
  rcv/binex.c:226:36: warning: unused parameter 'raw' [-Wunused-parameter]
    226 | static int decode_bnx_00_10(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:226:56: warning: unused parameter 'buff' [-Wunused-parameter]
    226 | static int decode_bnx_00_10(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:226:66: warning: unused parameter 'len' [-Wunused-parameter]
    226 | static int decode_bnx_00_10(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_11':
  rcv/binex.c:232:36: warning: unused parameter 'raw' [-Wunused-parameter]
    232 | static int decode_bnx_00_11(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:232:56: warning: unused parameter 'buff' [-Wunused-parameter]
    232 | static int decode_bnx_00_11(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:232:66: warning: unused parameter 'len' [-Wunused-parameter]
    232 | static int decode_bnx_00_11(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_12':
  rcv/binex.c:238:36: warning: unused parameter 'raw' [-Wunused-parameter]
    238 | static int decode_bnx_00_12(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:238:56: warning: unused parameter 'buff' [-Wunused-parameter]
    238 | static int decode_bnx_00_12(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:238:66: warning: unused parameter 'len' [-Wunused-parameter]
    238 | static int decode_bnx_00_12(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  tle.c: In function 'tle_read':
  rcv/binex.c: In function 'decode_bnx_00_13':
  rcv/binex.c:244:36: warning: unused parameter 'raw' [-Wunused-parameter]
    244 | static int decode_bnx_00_13(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  tle.c:390:5: warning: missing initializer for field 'alias' of 'tled_t' [-Wmissing-field-initializers]
    390 |     tled_t data={{0}};
    |     ^~~~~~
  rcv/binex.c:244:56: warning: unused parameter 'buff' [-Wunused-parameter]
    244 | static int decode_bnx_00_13(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:244:66: warning: unused parameter 'len' [-Wunused-parameter]
    244 | static int decode_bnx_00_13(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  In file included from tle.c:18:
  rtklib.h:598:10: note: 'alias' declared here
    598 |     char alias[32];     /* alias name */
    |          ^~~~~
  rcv/binex.c: In function 'decode_bnx_00_14':
  rcv/binex.c:250:36: warning: unused parameter 'raw' [-Wunused-parameter]
    250 | static int decode_bnx_00_14(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:250:56: warning: unused parameter 'buff' [-Wunused-parameter]
    250 | static int decode_bnx_00_14(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:250:66: warning: unused parameter 'len' [-Wunused-parameter]
    250 | static int decode_bnx_00_14(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_15':
  rcv/binex.c:256:36: warning: unused parameter 'raw' [-Wunused-parameter]
    256 | static int decode_bnx_00_15(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:256:56: warning: unused parameter 'buff' [-Wunused-parameter]
    256 | static int decode_bnx_00_15(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:256:66: warning: unused parameter 'len' [-Wunused-parameter]
    256 | static int decode_bnx_00_15(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_16':
  rcv/binex.c:262:36: warning: unused parameter 'raw' [-Wunused-parameter]
    262 | static int decode_bnx_00_16(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:262:56: warning: unused parameter 'buff' [-Wunused-parameter]
    262 | static int decode_bnx_00_16(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:262:66: warning: unused parameter 'len' [-Wunused-parameter]
    262 | static int decode_bnx_00_16(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_17':
  rcv/binex.c:268:36: warning: unused parameter 'raw' [-Wunused-parameter]
    268 | static int decode_bnx_00_17(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:268:56: warning: unused parameter 'buff' [-Wunused-parameter]
    268 | static int decode_bnx_00_17(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:268:66: warning: unused parameter 'len' [-Wunused-parameter]
    268 | static int decode_bnx_00_17(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_18':
  rcv/binex.c:274:36: warning: unused parameter 'raw' [-Wunused-parameter]
    274 | static int decode_bnx_00_18(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:274:56: warning: unused parameter 'buff' [-Wunused-parameter]
    274 | static int decode_bnx_00_18(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:274:66: warning: unused parameter 'len' [-Wunused-parameter]
    274 | static int decode_bnx_00_18(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_19':
  rcv/binex.c:280:36: warning: unused parameter 'raw' [-Wunused-parameter]
    280 | static int decode_bnx_00_19(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:280:56: warning: unused parameter 'buff' [-Wunused-parameter]
    280 | static int decode_bnx_00_19(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:280:66: warning: unused parameter 'len' [-Wunused-parameter]
    280 | static int decode_bnx_00_19(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_1a':
  rcv/binex.c:286:36: warning: unused parameter 'raw' [-Wunused-parameter]
    286 | static int decode_bnx_00_1a(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:286:56: warning: unused parameter 'buff' [-Wunused-parameter]
    286 | static int decode_bnx_00_1a(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:286:66: warning: unused parameter 'len' [-Wunused-parameter]
    286 | static int decode_bnx_00_1a(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_1b':
  rcv/binex.c:292:36: warning: unused parameter 'raw' [-Wunused-parameter]
    292 | static int decode_bnx_00_1b(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:292:56: warning: unused parameter 'buff' [-Wunused-parameter]
    292 | static int decode_bnx_00_1b(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:292:66: warning: unused parameter 'len' [-Wunused-parameter]
    292 | static int decode_bnx_00_1b(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_1c':
  rcv/binex.c:298:36: warning: unused parameter 'raw' [-Wunused-parameter]
    298 | static int decode_bnx_00_1c(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:298:56: warning: unused parameter 'buff' [-Wunused-parameter]
    298 | static int decode_bnx_00_1c(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:298:66: warning: unused parameter 'len' [-Wunused-parameter]
    298 | static int decode_bnx_00_1c(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_1d':
  rcv/binex.c:304:36: warning: unused parameter 'raw' [-Wunused-parameter]
    304 | static int decode_bnx_00_1d(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:304:56: warning: unused parameter 'buff' [-Wunused-parameter]
    304 | static int decode_bnx_00_1d(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:304:66: warning: unused parameter 'len' [-Wunused-parameter]
    304 | static int decode_bnx_00_1d(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_1e':
  rcv/binex.c:310:36: warning: unused parameter 'raw' [-Wunused-parameter]
    310 | static int decode_bnx_00_1e(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:310:56: warning: unused parameter 'buff' [-Wunused-parameter]
    310 | static int decode_bnx_00_1e(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:310:66: warning: unused parameter 'len' [-Wunused-parameter]
    310 | static int decode_bnx_00_1e(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_1f':
  rcv/binex.c:316:36: warning: unused parameter 'raw' [-Wunused-parameter]
    316 | static int decode_bnx_00_1f(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:316:56: warning: unused parameter 'buff' [-Wunused-parameter]
    316 | static int decode_bnx_00_1f(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:316:66: warning: unused parameter 'len' [-Wunused-parameter]
    316 | static int decode_bnx_00_1f(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_20':
  rcv/binex.c:322:36: warning: unused parameter 'raw' [-Wunused-parameter]
    322 | static int decode_bnx_00_20(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:322:56: warning: unused parameter 'buff' [-Wunused-parameter]
    322 | static int decode_bnx_00_20(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:322:66: warning: unused parameter 'len' [-Wunused-parameter]
    322 | static int decode_bnx_00_20(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_21':
  rcv/binex.c:328:36: warning: unused parameter 'raw' [-Wunused-parameter]
    328 | static int decode_bnx_00_21(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:328:56: warning: unused parameter 'buff' [-Wunused-parameter]
    328 | static int decode_bnx_00_21(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:328:66: warning: unused parameter 'len' [-Wunused-parameter]
    328 | static int decode_bnx_00_21(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_22':
  rcv/binex.c:334:36: warning: unused parameter 'raw' [-Wunused-parameter]
    334 | static int decode_bnx_00_22(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:334:56: warning: unused parameter 'buff' [-Wunused-parameter]
    334 | static int decode_bnx_00_22(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:334:66: warning: unused parameter 'len' [-Wunused-parameter]
    334 | static int decode_bnx_00_22(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_00_7f':
  rcv/binex.c:340:36: warning: unused parameter 'raw' [-Wunused-parameter]
    340 | static int decode_bnx_00_7f(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:340:56: warning: unused parameter 'buff' [-Wunused-parameter]
    340 | static int decode_bnx_00_7f(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:340:66: warning: unused parameter 'len' [-Wunused-parameter]
    340 | static int decode_bnx_00_7f(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o javad.o rcv/javad.c
  rcv/binex.c: In function 'decode_bnx_01_00':
  rcv/binex.c:405:36: warning: unused parameter 'raw' [-Wunused-parameter]
    405 | static int decode_bnx_01_00(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:405:56: warning: unused parameter 'buff' [-Wunused-parameter]
    405 | static int decode_bnx_01_00(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:405:66: warning: unused parameter 'len' [-Wunused-parameter]
    405 | static int decode_bnx_01_00(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  tides.c:25:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     25 | static const char rcsid[]="$Id:$";
    |                   ^~~~~
  rcv/binex.c: In function 'decode_bnx_02':
  rcv/binex.c:801:33: warning: unused parameter 'raw' [-Wunused-parameter]
    801 | static int decode_bnx_02(raw_t *raw, unsigned char *buff, int len)
    |                          ~~~~~~~^~~
  rcv/binex.c:801:53: warning: unused parameter 'buff' [-Wunused-parameter]
    801 | static int decode_bnx_02(raw_t *raw, unsigned char *buff, int len)
    |                                      ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:801:63: warning: unused parameter 'len' [-Wunused-parameter]
    801 | static int decode_bnx_02(raw_t *raw, unsigned char *buff, int len)
    |                                                           ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_03':
  rcv/binex.c:807:33: warning: unused parameter 'raw' [-Wunused-parameter]
    807 | static int decode_bnx_03(raw_t *raw, unsigned char *buff, int len)
    |                          ~~~~~~~^~~
  rcv/binex.c:807:53: warning: unused parameter 'buff' [-Wunused-parameter]
    807 | static int decode_bnx_03(raw_t *raw, unsigned char *buff, int len)
    |                                      ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:807:63: warning: unused parameter 'len' [-Wunused-parameter]
    807 | static int decode_bnx_03(raw_t *raw, unsigned char *buff, int len)
    |                                                           ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_7d':
  rcv/binex.c:813:33: warning: unused parameter 'raw' [-Wunused-parameter]
    813 | static int decode_bnx_7d(raw_t *raw, unsigned char *buff, int len)
    |                          ~~~~~~~^~~
  rcv/binex.c:813:53: warning: unused parameter 'buff' [-Wunused-parameter]
    813 | static int decode_bnx_7d(raw_t *raw, unsigned char *buff, int len)
    |                                      ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:813:63: warning: unused parameter 'len' [-Wunused-parameter]
    813 | static int decode_bnx_7d(raw_t *raw, unsigned char *buff, int len)
    |                                                           ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_7e':
  rcv/binex.c:819:33: warning: unused parameter 'raw' [-Wunused-parameter]
    819 | static int decode_bnx_7e(raw_t *raw, unsigned char *buff, int len)
    |                          ~~~~~~~^~~
  rcv/binex.c:819:53: warning: unused parameter 'buff' [-Wunused-parameter]
    819 | static int decode_bnx_7e(raw_t *raw, unsigned char *buff, int len)
    |                                      ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:819:63: warning: unused parameter 'len' [-Wunused-parameter]
    819 | static int decode_bnx_7e(raw_t *raw, unsigned char *buff, int len)
    |                                                           ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_7f_00':
  rcv/binex.c:825:36: warning: unused parameter 'raw' [-Wunused-parameter]
    825 | static int decode_bnx_7f_00(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:825:56: warning: unused parameter 'buff' [-Wunused-parameter]
    825 | static int decode_bnx_7f_00(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:825:66: warning: unused parameter 'len' [-Wunused-parameter]
    825 | static int decode_bnx_7f_00(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_7f_01':
  rcv/binex.c:831:36: warning: unused parameter 'raw' [-Wunused-parameter]
    831 | static int decode_bnx_7f_01(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:831:56: warning: unused parameter 'buff' [-Wunused-parameter]
    831 | static int decode_bnx_7f_01(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:831:66: warning: unused parameter 'len' [-Wunused-parameter]
    831 | static int decode_bnx_7f_01(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_7f_02':
  rcv/binex.c:837:36: warning: unused parameter 'raw' [-Wunused-parameter]
    837 | static int decode_bnx_7f_02(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:837:56: warning: unused parameter 'buff' [-Wunused-parameter]
    837 | static int decode_bnx_7f_02(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:837:66: warning: unused parameter 'len' [-Wunused-parameter]
    837 | static int decode_bnx_7f_02(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_7f_03':
  rcv/binex.c:843:36: warning: unused parameter 'raw' [-Wunused-parameter]
    843 | static int decode_bnx_7f_03(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:843:56: warning: unused parameter 'buff' [-Wunused-parameter]
    843 | static int decode_bnx_7f_03(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:843:66: warning: unused parameter 'len' [-Wunused-parameter]
    843 | static int decode_bnx_7f_03(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  rcv/binex.c: In function 'decode_bnx_7f_04':
  rcv/binex.c:849:36: warning: unused parameter 'raw' [-Wunused-parameter]
    849 | static int decode_bnx_7f_04(raw_t *raw, unsigned char *buff, int len)
    |                             ~~~~~~~^~~
  rcv/binex.c:849:56: warning: unused parameter 'buff' [-Wunused-parameter]
    849 | static int decode_bnx_7f_04(raw_t *raw, unsigned char *buff, int len)
    |                                         ~~~~~~~~~~~~~~~^~~~
  rcv/binex.c:849:66: warning: unused parameter 'len' [-Wunused-parameter]
    849 | static int decode_bnx_7f_04(raw_t *raw, unsigned char *buff, int len)
    |                                                              ~~~~^~~
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o novatel.o rcv/novatel.c
  rcv/binex.c: In function 'decode_bnx_7f_05':
  rcv/binex.c:1038:5: warning: missing initializer for field 'sat' of 'obsd_t' [-Wmissing-field-initializers]
   1038 |     obsd_t data={{0}};
    |     ^~~~~~
  In file included from rcv/binex.c:17:
  ./rtklib.h:476:19: note: 'sat' declared here
    476 |     unsigned char sat,rcv; /* satellite/receiver number */
    |                   ^~~
  At top level:
  rcv/binex.c:19:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     19 | static const char rcsid[]="$Id:$";
    |                   ^~~~~
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o nvs.o rcv/nvs.c
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o rcvlex.o rcv/rcvlex.c
  rcv/javad.c: In function 'decode_GA':
  rcv/javad.c:395:29: warning: unused parameter 'raw' [-Wunused-parameter]
    395 | static int decode_GA(raw_t *raw)
    |                      ~~~~~~~^~~
  rcv/javad.c: In function 'decode_NA':
  rcv/javad.c:402:29: warning: unused parameter 'raw' [-Wunused-parameter]
    402 | static int decode_NA(raw_t *raw)
    |                      ~~~~~~~^~~
  rcv/javad.c: In function 'decode_EA':
  rcv/javad.c:409:29: warning: unused parameter 'raw' [-Wunused-parameter]
    409 | static int decode_EA(raw_t *raw)
    |                      ~~~~~~~^~~
  rcv/javad.c: In function 'decode_WA':
  rcv/javad.c:416:29: warning: unused parameter 'raw' [-Wunused-parameter]
    416 | static int decode_WA(raw_t *raw)
    |                      ~~~~~~~^~~
  rcv/javad.c: In function 'decode_QA':
  rcv/javad.c:423:29: warning: unused parameter 'raw' [-Wunused-parameter]
    423 | static int decode_QA(raw_t *raw)
    |                      ~~~~~~~^~~
  rcv/crescent.c:42:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     42 | static const char rcsid[]="$Id: crescent.c,v 1.2 2008/07/14 00:05:05 TTAKA Exp $";
    |                   ^~~~~
  rcv/gw10.c:46:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     46 | static const char rcsid[]="$Id:$";
    |                   ^~~~~
  rcv/javad.c: In function 'decode_NU':
  rcv/javad.c:736:29: warning: unused parameter 'raw' [-Wunused-parameter]
    736 | static int decode_NU(raw_t *raw)
    |                      ~~~~~~~^~~
  rcv/javad.c: In function 'decode_EU':
  rcv/javad.c:743:29: warning: unused parameter 'raw' [-Wunused-parameter]
    743 | static int decode_EU(raw_t *raw)
    |                      ~~~~~~~^~~
  rcv/javad.c: In function 'decode_WU':
  rcv/javad.c:750:29: warning: unused parameter 'raw' [-Wunused-parameter]
    750 | static int decode_WU(raw_t *raw)
    |                      ~~~~~~~^~~
  rcv/javad.c: In function 'decode_QU':
  rcv/javad.c:757:29: warning: unused parameter 'raw' [-Wunused-parameter]
    757 | static int decode_QU(raw_t *raw)
    |                      ~~~~~~~^~~
  rcv/javad.c: In function 'decode_L1nav':
  rcv/javad.c:784:50: warning: unused parameter 'len' [-Wunused-parameter]
    784 | static int decode_L1nav(unsigned char *buff, int len, int sat, raw_t *raw)
    |                                              ~~~~^~~
  rcv/javad.c: In function 'decode_L2nav':
  rcv/javad.c:846:71: warning: unused parameter 'raw' [-Wunused-parameter]
    846 | static int decode_L2nav(unsigned char *buff, int len, int sat, raw_t *raw)
    |                                                                ~~~~~~~^~~
  rcv/javad.c: In function 'decode_L5nav':
  rcv/javad.c:873:71: warning: unused parameter 'raw' [-Wunused-parameter]
    873 | static int decode_L5nav(unsigned char *buff, int len, int sat, raw_t *raw)
    |                                                                ~~~~~~~^~~
  rcv/javad.c: In function 'decode_L1Cnav':
  rcv/javad.c:900:41: warning: unused parameter 'buff' [-Wunused-parameter]
    900 | static int decode_L1Cnav(unsigned char *buff, int len, int sat, raw_t *raw)
    |                          ~~~~~~~~~~~~~~~^~~~
  rcv/javad.c:900:72: warning: unused parameter 'raw' [-Wunused-parameter]
    900 | static int decode_L1Cnav(unsigned char *buff, int len, int sat, raw_t *raw)
    |                                                                 ~~~~~~~^~~
  rcv/javad.c: In function 'decode_LD':
  rcv/javad.c:976:29: warning: unused parameter 'raw' [-Wunused-parameter]
    976 | static int decode_LD(raw_t *raw)
    |                      ~~~~~~~^~~
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o rt17.o rcv/rt17.c
  rcv/nvs.c: In function 'decode_gloephem':
  rcv/nvs.c:250:32: warning: unused parameter 'sat' [-Wunused-parameter]
    250 | static int decode_gloephem(int sat, raw_t *raw)
    |                            ~~~~^~~
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o septentrio.o rcv/septentrio.c
  At top level:
  rcv/nvs.c:39:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     39 | static const char rcsid[]="$Id: nvs.c,v 1.0 2012/01/30 00:05:05 MBAVA Exp $";
    |                   ^~~~~
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o skytraq.o rcv/skytraq.c
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o ss2.o rcv/ss2.c
  At top level:
  rcv/javad.c:35:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     35 | static const char rcsid[]="$Id:$";
    |                   ^~~~~
  gcc -c -pipe -Wall -ansi -pedantic -Wno-unused-but-set-variable -DTRACE -g -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -I. -I/usr/lib/qt/mkspecs/linux-g++ -o ublox.o rcv/ublox.c
  rcv/novatel.c:50:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     50 | static const char rcsid[]="$Id: novatel.c,v 1.2 2008/07/14 00:05:05 TTAKA Exp $";
    |                   ^~~~~
  rcv/ss2.c:28:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     28 | static const char rcsid[]="$Id: ss2.c,v 1.2 2008/07/14 00:05:05 TTAKA Exp $";
    |                   ^~~~~
  rcv/rt17.c:308:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
    308 | static const char rcsid[]="$Id:$";
    |                   ^~~~~
  rcv/skytraq.c:52:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     52 | static const char rcsid[]="$Id:$";
    |                   ^~~~~
  g++ -c -pipe -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -Wp,-D_GLIBCXX_ASSERTIONS -flto -fno-fat-lto-objects -Wall -Wextra -D_REENTRANT -fPIC -DQT5 -D_RTLDLL -DNO_STRICT -DTRACE -DENAGLO -DENAQZS -DENAGAL -DENACMP -DNFREQ=3 -DENALEX -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I. -I../../src -I/usr/include/qt -I/usr/include/qt/QtWidgets -I/usr/include/qt/QtGui -I/usr/include/qt/QtCore -I. -I. -I/usr/lib/qt/mkspecs/linux-g++ -o moc_launchmain.o moc_launchmain.cpp
  rcv/septentrio.c:1897:12: warning: 'decode_sbslongcorrh' defined but not used [-Wunused-function]
   1897 | static int decode_sbslongcorrh(raw_t* raw)
    |            ^~~~~~~~~~~~~~~~~~~
  rcv/septentrio.c:1852:12: warning: 'decode_sbsigpmask' defined but not used [-Wunused-function]
   1852 | static int decode_sbsigpmask(raw_t *raw) /* TODO: verify this function */
    |            ^~~~~~~~~~~~~~~~~
  rcv/septentrio.c:1797:12: warning: 'decode_sbsionodelay' defined but not used [-Wunused-function]
   1797 | static int decode_sbsionodelay(raw_t *raw)
    |            ^~~~~~~~~~~~~~~~~~~
  rcv/septentrio.c:1767:12: warning: 'decode_sbsfastcorrdegr' defined but not used [-Wunused-function]
   1767 | static int decode_sbsfastcorrdegr(raw_t *raw)
    |            ^~~~~~~~~~~~~~~~~~~~~~
  rcv/septentrio.c:1734:12: warning: 'decode_sbsintegriy' defined but not used [-Wunused-function]
   1734 | static int decode_sbsintegriy(raw_t *raw)
    |            ^~~~~~~~~~~~~~~~~~
  rcv/septentrio.c:1694:12: warning: 'decode_sbsprnmask' defined but not used [-Wunused-function]
   1694 | static int decode_sbsprnmask(raw_t *raw)
    |            ^~~~~~~~~~~~~~~~~
  rcv/septentrio.c:1630:12: warning: 'decode_sbsfast' defined but not used [-Wunused-function]
   1630 | static int decode_sbsfast(raw_t *raw)
    |            ^~~~~~~~~~~~~~
  rcv/septentrio.c:1081:12: warning: 'decode_qzssnav' defined but not used [-Wunused-function]
   1081 | static int decode_qzssnav(raw_t *raw){
    |            ^~~~~~~~~~~~~~
  rcv/septentrio.c:1008:12: warning: 'decode_cmpnav' defined but not used [-Wunused-function]
   1008 | static int decode_cmpnav(raw_t *raw){
    |            ^~~~~~~~~~~~~
  rcv/septentrio.c:41:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     41 | static const char rcsid[]="$Id: Septentrio SBF,v 1.1 2016/02/11 FT $";
    |                   ^~~~~
  rcv/ublox.c:75:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
     75 | static const char rcsid[]="$Id: ublox.c,v 1.2 2008/07/14 00:05:05 TTAKA Exp $";
    |                   ^~~~~
  rm -f libRTKLib.a
  gcc-ar cqs libRTKLib.a rtkcmn.o convkml.o convrnx.o datum.o download.o ephemeris.o geoid.o ionex.o lambda.o options.o pntpos.o postpos.o ppp.o ppp_ar.o ppp_corr.o preceph.o qzslex.o rcvraw.o rinex.o rtcm.o rtcm2.o rtcm3.o rtcm3e.o rtkpos.o rtksvr.o sbas.o solution.o stream.o streamsvr.o tides.o tle.o binex.o crescent.o gw10.o javad.o novatel.o nvs.o rcvlex.o rt17.o septentrio.o skytraq.o ss2.o ublox.o
  make[1]: Leaving directory '/home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/src'
  launchmain.cpp: In member function 'int MainForm::ExecCmd(const QString&)':
  launchmain.cpp:178:36: warning: 'static bool QProcess::startDetached(const QString&)' is deprecated: Use QProcess::startDetached(const QString &program, const QStringList &arguments) instead [-Wdeprecated-declarations]
    178 |      return QProcess::startDetached(cmd); /* FIXME: show option not yet supported */
    |             ~~~~~~~~~~~~~~~~~~~~~~~^~~~~
  In file included from /usr/include/qt/QtCore/QProcess:1,
           from launchmain.cpp:21:
  /usr/include/qt/QtCore/qprocess.h:280:17: note: declared here
    280 |     static bool startDetached(const QString &command);
    |                 ^~~~~~~~~~~~~
  g++ -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -pipe -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -Wp,-D_GLIBCXX_ASSERTIONS -flto=16 -fno-fat-lto-objects -fuse-linker-plugin -fPIC -o rtklaunch_qt launchmain.o main.o qrc_rtklaunch_qt.o moc_launchmain.o   -lpng /usr/lib/libQt5Widgets.so /usr/lib/libQt5Gui.so /usr/lib/libQt5Core.so -lGL -lpthread
  make[2]: Leaving directory '/home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app/rtklaunch_qt'
  make[1]: Leaving directory '/home/o0331dobe/Downloads/rtklib-qt-git/src/RTKLIB/app'
  make: *** [Makefile:73: sub-app-make_first] Error 2
  ==> ERROR: A failure occurred in build().
      Aborting...

</details>

AchmadFathoni commented on 2022-02-15 14:09 (UTC)

Need co-maintainer for faster issue response

hadallen commented on 2022-02-05 18:41 (UTC) (edited on 2022-02-05 19:19 (UTC) by hadallen)

Unable to build, qmake command error during build(), no .pro file found

changing source line to the following solves the issue:

source=("${_pkgname}::git+https://github.com/JensReimann/RTKLIB-qt.git#branch=rtklib_2.4.3_qt")