On Sun, May 28, 2023 at 3:15 PM Hélio Guilherme <helioxentric(a)gmail.com> wrote:
Hello Gretl masters :)
Hello, Hélio! Good to hear from you.
I am trying to make a build pipeline in GitHub Actions, with the goal
to have Linux snapshots (.rpm, .deb). I am experimenting first on my copy of sourceforge,
but to make it in the official github clone setup by Artur Tarassow.
I am finding this blocking error:
CC xml_get.lo
LD xml_get.la
CC svm.lo
CXX svmlib.lo
libtool: error: specify a tag with '--tag'
make[1]: *** [Makefile:271: svmlib.lo] Error 1
I'm not familiar with this approach to building software, but at a
guess you might have to define "CXX" to a suitable and available C++
compiler at the stage of running gretl's configure script. For example
"CXX=g++" or "CXX=clang++".
Allin