skip to Main Content

Compiling Zabbix 5.2 with libxml2 support – Debian

I have problem compiling Zabbix 5.2 configured this way: # ./configure --enable-server --enable-agent --with-net-snmp --with-libcurl --with-libxml2 --with-postgresql --with-prefix=/usr/local/zabbix5 --verbose ... checking for PostgreSQL libraries... yes checking if PostgreSQL version is >= 9.2... yes checking for Zabbix server/proxy database selection... ok…

VIEW QUESTION

How to install libstdc++6 debug symbols on Ubuntu 20.04? – Debian

For example, take the following minimal example: #include <cstdio> #include <stdexcept> int main(int argc, char* argv[]){ #ifdef __GLIBCPP__ std::printf("GLIBCPP: %dn",__GLIBCPP__); #endif #ifdef __GLIBCXX__ std::printf("GLIBCXX: %dn",__GLIBCXX__); #endif throw std::runtime_error("Were are libstdc++.so.6 debug symbols?"); return 0; } When running it inside my…

VIEW QUESTION
Back To Top
Search