diff options
| author | 2025-09-14 19:41:28 +0200 | |
|---|---|---|
| committer | 2025-09-14 19:41:28 +0200 | |
| commit | f4e3e27dd0b56ac39f0f6242d3464df764ab2a61 (patch) | |
| tree | e04ff68b275a929bb1f677f2c36d6b046acc5dee /main.c | |
| parent | 6cb4382b0128942f4ba57ab26021be1e5715f2bc (diff) | |
license and readme
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -132,6 +132,7 @@ optparse(char **args) else if (args[1]) task.out = *++args; else goto Bad; } else if (*arg == 'f') { + /* -fabc / -fno-abc flags */ const char *flag = arg+1; bool set = 1; if (!strncmp(flag, "no-", 3)) { @@ -295,6 +296,8 @@ prihelp(void) " -o <file> \tPlace the output into <file>\n" " -v \tVerbose output\n" " -c \tEmit object file but do not link\n" + " -fpie \tEmit code for position independent executable\n" + " -fpic \tEmit position independent code\n" ); } |