source: palm/trunk/TUTORIALS/builds/gfortran_default/build_config.yml @ 4180

Last change on this file since 4180 was 3830, checked in by raasch, 5 years ago

more uninitialized checks removed in gfortran default options

File size: 1.1 KB
Line 
1---
2# this is a palmtest build configuration file
3
4compiler:
5  id: GNU
6  executable: "{{GNU.executable}}"
7  mpi_wrapper: "{{GNU.mpi_wrapper}}"
8  definitions:
9    - "MPI_REAL=MPI_DOUBLE_PRECISION"
10    - "MPI_2REAL=MPI_2DOUBLE_PRECISION"
11    - "__parallel"
12    - "__netcdf"
13    - "__netcdf4"
14    - "__netcdf4_parallel"
15    - "__fftw"
16    - "__rrtmg"
17    - "__gfortran"
18  options:
19    default:
20      - "-cpp"
21      - "-Wall"
22      - "-Werror"
23      - "-Wextra"
24      - "-pedantic"
25      - "-Wno-uninitialized"
26      - "-Wno-maybe-uninitialized"
27      - "-Wno-conversion"
28      - "-Wno-compare-reals"
29      - "-Ofast"
30      - "-ffree-line-length-none"
31    debug:
32      - "-cpp"
33      - "-O0"
34      - "-Wall"
35      - "-Werror"
36      - "-Wextra"
37      - "-pedantic"
38      - "-fcheck=all"
39      - "-fbacktrace"
40      - "-Wno-conversion"
41      - "-Wno-compare-reals"
42      - "-finit-real=nan"
43      - "-ffree-line-length-none"
44  includes:
45    - "{{GNU.include.netcdf}}"
46    - "{{GNU.include.fftw}}"
47    - "{{GNU.include.rrtmg}}"
48
49linker:
50  options:
51    - "{{GNU.lib.netcdf}}"
52    - "{{GNU.lib.fftw}}"
53    - "{{GNU.lib.rrtmg}}"
Note: See TracBrowser for help on using the repository browser.