SWDEV-269880 - Fix luxmark 3.1 segfaults

To workaround a bug in std::regex() implementation.

Change-Id: I4ea2b40e0b74ee1ee79d31283937e43d361d37c2


[ROCm/clr commit: 4791447370]
This commit is contained in:
Jason Tang
2021-02-01 16:06:10 -05:00
committed by Jason Tang
parent c490930624
commit 8dffe9c8e6
@@ -1555,7 +1555,7 @@ Options::setDumpFileName(const char* val)
std::stringstream prefix;
// Replace characters in the file name that are not legal with '_'.
prefix << dumpPrefix << "_" << buildNo << "_"
<< std::regex_replace(val, std::regex("[:]"), "_");
<< std::regex_replace(val, std::regex(":"), "_");
dumpFileRoot = prefix.str();
// Check whether the length of path meets the system limits