source: trunk/LMDZ.COMMON/bld.cfg @ 2124

Last change on this file since 2124 was 1961, checked in by jvatant, 6 years ago

+ Update bld.cfg to enable pre-processing keys for C as Titan chemistry will now on use LAPACK ( upcoming commit )
+ Also update the OCCIGEN ref arch.fcm for C for same reasons
--JVO

File size: 3.4 KB
Line 
1# ----------------------- FCM extract configuration file -----------------------
2cfg::type                           bld
3cfg::version                        1.0
4
5
6# ------------------------------------------------------------------------------
7# Build information
8# ------------------------------------------------------------------------------
9
10#Default value of FPP fortran preprocessor
11%FPP cpp
12# C preprocessor
13%CPP cpp
14
15inc arch.fcm
16inc config.fcm
17
18%CONFIG_NAME       %{ARCH}%SUFF_NAME
19%BASE_CONFIG_PATH  %LIBO/%CONFIG_NAME
20%CONFIG_PATH       %BASE_CONFIG_PATH/.config
21%SRC_PATH          %LIBF
22
23%FFLAGS            %BASE_FFLAGS %COMPIL_FFLAGS %PARA_FFLAGS
24%LD_FLAGS          %BASE_LD %PARA_LD
25
26src::dyn     %SRC_PATH/%DYN
27src::phys    %SRC_PATH/%PHYS
28src::dyn_phys %DYN_PHYS
29src::dyn_phys_sub %DYN_PHYS_SUB
30src::sisvat  %SISVAT
31src::rrtm    %RRTM
32src::dust    %DUST
33src::strataer %STRATAER
34src::grid    %SRC_PATH/grid
35src::filtrez %FILTRE
36src::misc   %SRC_PATH/misc
37src::dyn3d_common   %DYN_COMMON
38src::phy_common %PHY_COMMON
39src::cosp    %COSP
40src::chem    %CHEM
41src::cloud   %CLOUD
42src::muphy   %MUPHY
43src::aerono  %AERONO
44
45# IMPORTANT: muphytitan package hates floating point promotion !
46# This is unfortunately specific to Titan microphysic package !!
47bld::tool::fflags::muphy  -c %INCDIR %COMPIL_FFLAGS %PARA_FFLAGS
48
49bld::lib            lmdz
50
51
52bld::outfile_ext::exe    %SUFF_NAME
53bld::target              liblmdz.a %EXEC%SUFF_NAME
54bld::exe_dep             
55
56
57dir::root            %CONFIG_PATH
58#dir::lib             %BASE_CONFIG_PATH
59dir::bin             %ROOT_PATH/bin
60
61#search_src           1
62
63bld::tool::fpp       %FPP
64bld::tool::cpp       %CPP
65bld::tool::fc        %COMPILER
66bld::tool::cc        %C_COMPILER
67bld::tool::ld        %LINK
68bld::tool::ar        %AR
69bld::tool::make      %MAKE
70bld::tool::fflags    %FFLAGS %INCDIR
71bld::tool::cflags    %C_OPTIM %INCDIR
72bld::tool::ldflags   %LD_FLAGS %LIB 
73
74bld::tool::cppflags  %CPP_FLAGS %INCDIR
75bld::tool::fppflags  %FPP_FLAGS %INCDIR
76bld::tool::cppkeys   %CPP_KEY %CPP_DEF
77bld::tool::fppkeys   %CPP_KEY %FPP_DEF
78
79# Example of how to set specific compiling options for a specific file
80# -> this can be including in the arch.opt file
81#bld::tool::fflags::phys::readaerosol         %BASE_FFLAGS %PROD_FFLAGS  %INCDIR -C hopt -pi auto
82
83
84inc arch.opt
85
86# Pre-process code before analysing dependencies
87bld::pp              1
88
89# Ignore the following dependencies
90bld::excl_dep        inc::netcdf.inc
91bld::excl_dep        use::netcdf
92bld::excl_dep        use::typesizes
93bld::excl_dep        h::netcdf.inc
94bld::excl_dep        h::mpif.h
95bld::excl_dep        inc::mpif.h
96bld::excl_dep        use::ioipsl
97bld::excl_dep        use::intersurf
98bld::excl_dep        use::mod_prism_proto
99bld::excl_dep        use::mod_prism_def_partition_proto
100bld::excl_dep        use::mod_prism_get_proto
101bld::excl_dep        use::mod_prism_put_proto
102bld::excl_dep        use::mod_prism
103bld::excl_dep        use::xios
104bld::excl_dep        use::iaxis
105bld::excl_dep        use::iaxis_attr
106bld::excl_dep        use::icontext_attr
107bld::excl_dep        use::idate
108bld::excl_dep        use::idomain_attr
109bld::excl_dep        use::ifield_attr
110bld::excl_dep        use::ifile_attr
111bld::excl_dep        use::ixml_tree
112
113# Don't generate interface files
114bld::tool::geninterface none
115
116# Allow ".inc" as an extension for CPP include files
117bld::infile_ext::inc  CPP::INCLUDE
118
119# extension for module output
120bld::outfile_ext::mod .mod
121bld::tool::SHELL   /bin/bash
Note: See TracBrowser for help on using the repository browser.