You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
398 B
15 lines
398 B
// 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
|
|
// clang -target aarch64-linux-gnu -fPIC -shared dynamic-table.c \
|
|
// -o dynamic-table-so.aarch64
|
|
int puts(const char *);
|
|
|
|
__thread int foo;
|
|
|
|
int main(void) {
|
|
puts("Hello, World");
|
|
foo = 0;
|
|
}
|