blob: 6b01ba5388be0feaebe84496ff32031e6d9a4fb2 [file] [log] [blame]
// clang -target mipsel-linux-gnu -shared -fPIC -lc dynamic-table.c \
// -o dynamic-table-so.mips
// clang -target mipsel-linux-gnu -lc dynamic-table.c \
// -o dynamic-table-exe.mips
int puts(const char *);
int main(void) {
puts("Hello, World");
}