https://bugs.kde.org/show_bug.cgi?id=389162
Anatoli Shein <anatoli.sh...@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |anatoli.sh...@gmail.com --- Comment #2 from Anatoli Shein <anatoli.sh...@gmail.com> --- I am hitting the same issue. The environment variable LD_LIBRARY_PATH completely disappears when I Execute my application, however it works correctly when I Debug the application. Sample c++ code that reproduces this issue for me: #include <iostream> #include <cstdlib> int main() { if(const char* env_p = std::getenv("LD_LIBRARY_PATH")) std::cout << "LD_LIBRARY_PATH=" << env_p << '\n'; return 0; } I get no output when I Execute this code, and I get the correct value of the LD_LIBRARY_PATH variable printed when I Debug this. -- You are receiving this mail because: You are watching all bug changes.