SWDEV-1 - Add missing newlines to debug log output

Change-Id: I6c98d482079c34931cdc0615075eba34f87241f3
This commit is contained in:
Jacob Lambert
2023-04-13 16:02:46 -07:00
committed by Jacob Lambert
parent 31697779bb
commit 2a9d8b5862
+2 -2
View File
@@ -2599,13 +2599,13 @@ bool Program::createKernelMetadataMap(void* binary, size_t binSize) {
const amd::Isa *binaryIsa = amd::Isa::findIsa(binaryIsaName.data());
if (!binaryIsa) {
buildLog_ += "Error: Could not find the program ISA " + std::string(binaryIsaName.data());
buildLog_ += "Error: Could not find the program ISA " + std::string(binaryIsaName.data()) + "\n";
return false;
}
if (!amd::Isa::isCompatible(*binaryIsa, device().isa())) {
buildLog_ += "Error: The program ISA " + std::string(binaryIsaName.data());
buildLog_ += " is not compatible with the device ISA " + device().isa().isaName();
buildLog_ += " is not compatible with the device ISA " + device().isa().isaName() + "\n";
return false;
}
}