diff options
-rw-r--r-- | driver.c | 2 | ||||
-rw-r--r-- | targ.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -384,7 +384,7 @@ main(int argc, char *argv[]) arrayaddbuf(&stages[LINK].cmd, linkcmd, sizeof(linkcmd)); if (hasprefix(target, "x86_64-") || hasprefix(target, "amd64-")) { - arch = "x86_64"; + arch = "x86_64-sysv"; qbearch = "amd64_sysv"; } else if (hasprefix(target, "aarch64-")) { arch = "aarch64"; @@ -7,7 +7,7 @@ const struct target *targ; static const struct target alltargs[] = { { - .name = "x86_64", + .name = "x86_64-sysv", .typewchar = &typeint, .typevalist = &(struct type){ .kind = TYPEARRAY, |