After updating packages on Arch Linux ( KDE Plasma, 4.18.8-arch1-1-ARCH x86_64 GNU/Linux ), I cannot start bitcoin-qt even from a fresh installation again. No log, no error messages. Compiling from the latest source on github gives the same result.
I found the problem using gdb -> run -> CTRL+C -> bt
sequnce and gdb points qt/bitcoin.cpp:579.
I had to disable SSLv3 -> TLS code part in order to run the bitcoin-qt wallet.
Disabled code part ( src/qt/bitcoin.cpp, line 579 )
0 QSslConfiguration sslconf = QSslConfiguration::defaultConfiguration();
1 sslconf.setProtocol(QSsl::TlsV1_0OrLater);
2 QSslConfiguration::setDefaultConfiguration(sslconf);
I have also reported the issue to Arch Linux BBS forum and AUR page of bitcoin-git package.
Do I need to set up a TLS configuration on Arch Linux? Thanks for your help.