Skip to content

Commit

Permalink
Merge pull request lfortran#4474 from Pranavchiku/default-integer-8
Browse files Browse the repository at this point in the history
chore: show that we support `-fdefault-integer-8` in f_flags
  • Loading branch information
certik authored Jul 11, 2024
2 parents fc1a802 + b567669 commit 479c427
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 479c427

Please sign in to comment.