installation SAP HANA VORA : Error dependencies : libgmp.so.3 missing - vora

When I install the file *rpm I get this error message :
"Problem: nothing provides libgmp.so.3()(64bit) needed by libmpc2-0.8.2-1.7.1.x86_64".
How can I import this library or resolve this dependencie ?
Thank you.

These SAP Notes have instructions to install the compat libraries for SLES:
compat libraries 4.7 as per SAP Note 2001528 https://launchpad.support.sap.com/#/notes/0002001528
compat libraries 4.8 as per SAP Note 2228351 https://launchpad.support.sap.com/#/notes/2228351
Both instruct to run
zypper install libgcc_s1 libstdc++6
Make sure you have the correct versions as documented in both Notes.

Related

VCPKG: list available versions of a package

For example, how can I list available GDAL library versions ?
They are not listed on VCPKG packages website neither by vcpkg search gdalcommand.
Try this! it is a quick fix until vcpkg supports pkgs version listing. https://github.com/hamaney/vcpkg_version_finder.
on a related note:
to look up a package by name and get the latest available version of it use vcpkg search <pkg name>
UPDATE SEP-11-2021:
I just found out that you can use the experimental flag x-history. for example vcpkg x-history <pkg name> (you might need an internet connection the first time you run this command).
You can use https://vcpkg.link/ in order to find all the versions of a package and when it got released (e.g. https://vcpkg.link/ports/gdal/versions for gdal). Besides, you can also see from which version a given feature has been introduced by looking at the overview of a package.
Disclosure: I'm the creator of the platform.

How to install a newer version of libstdc++ on Centos 7

I am running an application and it throws me an error saying:
"C++ header 'string_view' is required. You need to install a newer libstdc++ on the host system."
Can someone guide me on what I need to do to get a newer version of "libstdc++" on my machine?
Thanks
Try running yum provides libstdc++ to show you what package provided the library on your system. You can then check if those packages are available for update using yum list available | grep <that package> followed by yum update <that package>.
Facing the same issue, I built gcc from source. This way you get to choose your own version. It's actually pretty straightforard -- see Building GCC at https://gcc.gnu.org/wiki/InstallingGCC.

How can install alternate version of Boost C++ library on Mac

I am trying to install Boost C++ using Homebrew in Mac.
$brew install boost .
This installs latest version 1.75 ,
I want to install lower versions like 1.70 . Is there a way I can maintain alternate versions ?
I am open to any pkg manager other than brew . If there is any please suggest .
Thanks in advance !!
homebrew also hosts boost#1.57 and boost#1.60 (brew search boost). If the version you need is not one of those, you could always install it yourself; it's not like you have to maintain an older installation. You just have to go through the "hassle" of following the installation instructions.

libconfig++8 1.3.2-2 installed but cannot be seen

I need a library in this case libconfig++8 1.3.2-2 and I found a .deb who install it
https://launchpad.net/ubuntu/lucid/amd64/libconfig++8/1.3.2-2
But I can not see it in the package manager and when I try to install another package (.deb) which depends on it, an error appears and it claims for that version of libconfig "error dependence is not satisfiable"
Thanks in advance.

Cannot install Core, unlikely download issues reported

I'm trying to install Janestreet's Core for OCaml using opam on Mac OsX to get started with the "Real world OCaml" book.
I get the following error:
===== ERROR while installing herelib.109.35.02 =====
Could not get the source for herelib.109.35.02:
# opam-version 1.1.1
# os darwin
Cannot download https://opam.ocaml.org/archives/herelib.109.35.02+opam.tar.gz,
please check your connection settings.
All other libraries after herelib fail as well.
I don't have connection problems, though, as the libraries up to herelib do download (last successful is type_conv as far as I can tell). Also, pasting the reported URL in Chrome starts a file download immediately, so it doesn't seem to be a server problem at the source.
Homebrew reports my Opam and Ocaml as up to date.
Any ideas?
Your version numbers for both herelib and opam looks quite outdated. The following may help:
Update your repository with opam update
Try to use more recent opam, it is available under macports and brew.