[flang-commits] [flang] 3709822 - [flang][docs] Document the `flang` wrapper script

Andrzej Warzynski via flang-commits flang-commits at lists.llvm.org
Fri Aug 6 05:46:15 PDT 2021


Author: Andrzej Warzynski
Date: 2021-08-06T12:45:32Z
New Revision: 3709822d2602b8b7db2d9bcc0e856f676582f25d

URL: https://github.com/llvm/llvm-project/commit/3709822d2602b8b7db2d9bcc0e856f676582f25d
DIFF: https://github.com/llvm/llvm-project/commit/3709822d2602b8b7db2d9bcc0e856f676582f25d.diff

LOG: [flang][docs] Document the `flang` wrapper script

Differential Revision: https://reviews.llvm.org/D107543

Added: 
    

Modified: 
    flang/docs/FlangDriver.md

Removed: 
    


################################################################################
diff  --git a/flang/docs/FlangDriver.md b/flang/docs/FlangDriver.md
index b5f38aab53fae..583d7d9e08e16 100644
--- a/flang/docs/FlangDriver.md
+++ b/flang/docs/FlangDriver.md
@@ -129,6 +129,33 @@ is `ParseSyntaxOnlyAction`, which corresponds to `-fsyntax-only`. In other
 words, `flang-new -fc1 <input-file>` is equivalent to `flang-new -fc1 -fsyntax-only
 <input-file>`.
 
+## The `flang` script
+The `flang` wrapper script for `flang-new` was introduced as a development tool
+and to facilitate testing. While code-generation is not available in Flang, you
+can use it as a drop-in replacement for other Fortran compilers in your build
+scripts.
+
+The `flang` wrapper script will:
+* use `flang-new` to unparse the input source file (i.e. it will run `flang-new
+  -fc1 -fdebug-unparse <input-file>`), and then
+* call a host Fortran compiler, e.g. `gfortran`, to compile the unparsed file.
+
+Here's a basic breakdown of what happens inside `flang` when you run `flang
+file.f90`:
+```bash
+flang-new -fc1 -fdebug-unparse file.f90 -o file-unparsed.f90
+gfortran file-unparsed.f90
+```
+This is a simplified version for illustration purposes only. In practice,
+`flang` adds a few more frontend options and it also supports various other use
+cases (e.g. compiling C files, linking existing object files). `gfortran` is
+the default host compiler used by `flang`. You can change it by setting the
+`FLANG_FC` environment variable.
+
+Our intention is to replace `flang` with `flang-new`. Please consider `flang`
+as a temporary substitute for Flang's compiler driver while the actual driver
+is in development.
+
 ## Adding new Compiler Options
 Adding a new compiler option in Flang consists of two steps:
 * define the new option in a dedicated TableGen file,


        


More information about the flang-commits mailing list