source: palm/trunk/TESTS/builds/gfortran_default/build_config.yml @ 4725

Last change on this file since 4725 was 4676, checked in by pavelkrc, 4 years ago

Fix traceback information in gfortran debug build config for palmtest

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-maybe-uninitialized"
26      - "-Wno-conversion"
27      - "-Wno-compare-reals"
28      - "-Ofast"
29      - "-ffree-line-length-none"
30    debug:
31      - "-cpp"
32      - "-O0"
33      - "-g"
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.