mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-19 04:32:19 +00:00
9de1c5fcb4
section tags to the llvm-readobj. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@198561 91177308-0d34-0410-b5e6-96231b3b80d8
10 lines
263 B
C
10 lines
263 B
C
// 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");
|
|
}
|