Skip to content

Commit

Permalink
update help
Browse files Browse the repository at this point in the history
  • Loading branch information
wortiz committed Aug 8, 2024
1 parent 654450b commit b9a6c27
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tpls/install-tpls.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@
parser = argparse.ArgumentParser(
description="""Third party library installer for the finite element code Goma"""
)
parser.add_argument("--cc", help="C compiler to use", type=pathlib.Path)
parser.add_argument("--cxx", help="C++ compiler to use", type=pathlib.Path)
parser.add_argument("--fc", help="Fortran compiler to use", type=pathlib.Path)
parser.add_argument("--cc", help="C compiler to use, default is CC environment variable or gcc", type=pathlib.Path)
parser.add_argument("--cxx", help="C++ compiler to use, default is CXX environment variable or g++", type=pathlib.Path)
parser.add_argument("--fc", help="Fortran compiler to use, defualt is FC environment variable or gfortran", type=pathlib.Path)
parser.add_argument(
"--download-dir", help="Download location of tarballs", type=pathlib.Path
)
Expand Down

0 comments on commit b9a6c27

Please sign in to comment.