all: CI and misc updates

This commit is contained in:
Markus F.X.J. Oberhumer
2023-06-06 23:16:28 +02:00
parent dae45ae0d4
commit db39f9c4dc
17 changed files with 1608 additions and 40 deletions
+6 -3
View File
@@ -65,7 +65,7 @@ bool PackW64PeArm64::canPack() {
checkMachine(ih.cpu);
if (ih.cpu != IMAGE_FILE_MACHINE_ARM64)
return false;
throwCantPack("not yet implemented");
throwCantPack("win64/arm64 is not yet implemented");
return true;
}
@@ -106,9 +106,12 @@ void PackW64PeArm64::pack(OutputFile *fo) {
**************************************************************************/
bool PackW64PeArm64EC::canPack() {
if (!readFileHeader() || ih.cpu != IMAGE_FILE_MACHINE_ARM64EC)
if (!readFileHeader())
return false;
throwCantPack("not yet implemented");
checkMachine(ih.cpu);
if (ih.cpu != IMAGE_FILE_MACHINE_ARM64EC)
return false;
throwCantPack("win64/arm64ec is not yet implemented");
return true;
}