- the foamConfigurePaths script is quite simplistic and aggressive in what it changes. This was particularly evident when using it to change gcc/clang versions. Restructured the corresponding compiler settings to define default versions (eg, "default_gcc_version") that limits the scope of changes performed by foamConfigurePaths and makes it easier to understand if changing manually.
29 lines
1.0 KiB
Bash
29 lines
1.0 KiB
Bash
#----------------------------------*-sh-*--------------------------------------
|
|
# ========= |
|
|
# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
# \\ / O peration |
|
|
# \\ / A nd | www.openfoam.com
|
|
# \\/ M anipulation |
|
|
#------------------------------------------------------------------------------
|
|
# Copyright (C) 2020 OpenCFD Ltd.
|
|
#------------------------------------------------------------------------------
|
|
# License
|
|
# This file is part of OpenFOAM, distributed under GPL-3.0-or-later.
|
|
#
|
|
# File
|
|
# config.sh/example/compiler-Gcc92
|
|
# - sourced by OpenFOAM-*/etc/config.sh/compiler
|
|
#
|
|
# Description
|
|
# Example of fine tuning compiler settings with a hook
|
|
#
|
|
#------------------------------------------------------------------------------
|
|
|
|
# Modify/override compiler settings
|
|
gcc_version=gcc-9.2.0
|
|
gmp_version=gmp-6.2.0
|
|
mpfr_version=mpfr-4.0.2
|
|
mpc_version=mpc-1.1.0
|
|
|
|
#------------------------------------------------------------------------------
|