xcoff: add resource test files (#4)

This commit is contained in:
Esme
2022-10-19 12:39:02 +10:00
committed by GitHub
parent e61733eec1
commit 1f989e6bb9
6 changed files with 11 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
#include <stdio.h>
int main() {
printf("Hello, world");
return 0;
}
BIN
View File
Binary file not shown.
+5
View File
@@ -0,0 +1,5 @@
#!/bin/sh
clang base.c --target=powerpc64-ibm-aix-xcoff -m64 -c -o base.o
clang base.c --target=powerpc64-ibm-aix-xcoff -m64 -o base.xcoff
clang base.c --target=powerpc-ibm-aix-xcoff -m32 -c -o base32.o
clang base.c --target=powerpc-ibm-aix-xcoff -m32 -o base32.xcoff
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.