mirror of
https://github.com/encounter/object-testfiles.git
synced 2026-07-10 12:18:40 -07:00
6 lines
268 B
Bash
6 lines
268 B
Bash
#!/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
|