mirror of
https://github.com/oasislinux/oasis.git
synced 2026-05-17 17:33:30 +02:00
27 lines
891 B
C
27 lines
891 B
C
static const char target[] = "x86_64-linux-musl";
|
|
static const char *const startfiles[] = {"-l", ":crt1.o", "-l", ":crti.o"};
|
|
static const char *const endfiles[] = {"-l", "c", "-l", ":crtn.o"};
|
|
static const char *const preprocesscmd[] = {
|
|
"cpp",
|
|
|
|
/* clear preprocessor GNU C version */
|
|
"-U", "__GNUC__",
|
|
"-U", "__GNUC_MINOR__",
|
|
|
|
/* we don't yet support these optional features */
|
|
"-D", "__STDC_NO_ATOMICS__",
|
|
"-D", "__STDC_NO_COMPLEX__",
|
|
"-D", "__STDC_NO_VLA__",
|
|
"-U", "__SIZEOF_INT128__",
|
|
|
|
/* we don't generate position-independent code */
|
|
"-U", "__PIC__",
|
|
|
|
/* ignore attributes and extension markers */
|
|
"-D", "__attribute__(x)=",
|
|
"-D", "__extension__=",
|
|
};
|
|
static const char *const codegencmd[] = {"qbe"};
|
|
static const char *const assemblecmd[] = {"as"};
|
|
static const char *const linkcmd[] = {"ld", "--dynamic-linker", "/lib/ld-musl-x86_64.so.1"};
|