Receiving SIGABRT on Raspi when trying to parse string to date with either std::get_time or strftime – Ubuntu
When I'm parsing a string to date with either std::get_time or strftime I receive a SIGABRT on my RaspberryPi. When I execute the same code on my Ubuntu computer it works fine. std::get_time example: #include <chrono> #include <iomanip> #include <iostream>…