diff options
| author | Andrew Lister <andrew.lister@stfc.ac.uk> | 2025-06-20 15:33:59 +0100 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2025-06-27 09:29:55 -0700 |
| commit | 68d29ef7f62df5481aa4de8eaf421f25243f4cb2 (patch) | |
| tree | 6c19d50608dc012264a6ced7d6a1d41d9a2ab6cf /mesonbuild/compilers/fortran.py | |
| parent | fea9f6918a6647430f4e22ca908f074b3e93e489 (diff) | |
| download | meson-68d29ef7f62df5481aa4de8eaf421f25243f4cb2.tar.gz | |
compilers-fortran: Fix preprocessing when fortran uses concat operator
Diffstat (limited to 'mesonbuild/compilers/fortran.py')
| -rw-r--r-- | mesonbuild/compilers/fortran.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mesonbuild/compilers/fortran.py b/mesonbuild/compilers/fortran.py index 180a2dbfa..6f4f3d2c1 100644 --- a/mesonbuild/compilers/fortran.py +++ b/mesonbuild/compilers/fortran.py @@ -446,6 +446,11 @@ class IntelLLVMFortranCompiler(IntelFortranCompiler): id = 'intel-llvm' + def get_preprocess_only_args(self) -> T.List[str]: + return ['-preprocess-only'] + + def get_dependency_gen_args(self, outtarget: str, outfile: str) -> T.List[str]: + return [] class IntelClFortranCompiler(IntelVisualStudioLikeCompiler, FortranCompiler): |
