From b567669de2fb8c5b83498001b300d51632fc7be9 Mon Sep 17 00:00:00 2001 From: Pranavchiku Date: Wed, 10 Jul 2024 17:14:13 +0530 Subject: [PATCH] chore: show that we support -fdefault-integer-8 in f_flags --- src/bin/lfortran.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/lfortran.cpp b/src/bin/lfortran.cpp index c0ce7d75d7..2dc56b7222 100644 --- a/src/bin/lfortran.cpp +++ b/src/bin/lfortran.cpp @@ -2040,7 +2040,7 @@ int main_app(int argc, char *argv[]) { app.add_option("-D", compiler_options.c_preprocessor_defines, "Define = (or 1 if 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