Skip to content

Commit

Permalink
chore: show that we support -fdefault-integer-8 in f_flags
Browse files Browse the repository at this point in the history
  • Loading branch information
Pranavchiku committed Jul 10, 2024
1 parent 6f1257a commit b567669
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/lfortran.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2040,7 +2040,7 @@ int main_app(int argc, char *argv[]) {
app.add_option("-D", compiler_options.c_preprocessor_defines, "Define <macro>=<value> (or 1 if <value> omitted)")->allow_extra_args(false);
app.add_flag("--version", arg_version, "Display compiler version information");
app.add_option("-W", linker_flags, "Linker flags")->allow_extra_args(false);
app.add_option("-f", f_flags, "All `-f*` flags (only -fPIC supported for now)")->allow_extra_args(false);
app.add_option("-f", f_flags, "All `-f*` flags (only -fPIC & -fdefault-integer-8 supported for now)")->allow_extra_args(false);
app.add_option("-O", O_flags, "Optimization level (ignored for now)")->allow_extra_args(false);

// LFortran specific options
Expand Down

0 comments on commit b567669

Please sign in to comment.