From: Nicolas CROUZET - SFME/LGLS Date: Tue, 10 Nov 2020 08:18:12 +0000 (+0100) Subject:  add gcc system dependencies X-Git-Tag: V9_6_0~1 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=ff451c3565decb67168d61e6b041d9bd4ce3b8ae;p=tools%2Fsat_salome.git  add gcc system dependencies --- diff --git a/applications/GCC-6.3.0.pyconf b/applications/GCC-6.3.0.pyconf index c85d0d6..d7b03c9 100644 --- a/applications/GCC-6.3.0.pyconf +++ b/applications/GCC-6.3.0.pyconf @@ -16,6 +16,9 @@ APPLICATION : { # PREREQUISITES : gcc : '6.3.0' + mpc : 'native' + gmp : 'native' + mpfr : 'native' } test_base : { diff --git a/products/gcc.pyconf b/products/gcc.pyconf index 376bc91..b3ad62f 100644 --- a/products/gcc.pyconf +++ b/products/gcc.pyconf @@ -9,7 +9,7 @@ default : env_script : $name + ".py" } patches : [] - depend : [] + depend : ["gmp", "mpc", "mpfr"] source_dir : $APPLICATION.workdir + $VARS.sep + 'SOURCES' + $VARS.sep + $name build_dir : $APPLICATION.workdir + $VARS.sep + 'BUILD' + $VARS.sep + $name install_dir : 'base' diff --git a/products/gmp.pyconf b/products/gmp.pyconf new file mode 100644 index 0000000..19dfdf9 --- /dev/null +++ b/products/gmp.pyconf @@ -0,0 +1,14 @@ +# Only used as a native product for dedicated opencv compilation +default : +{ + name : "gmp" + get_source : "system" + depend : [] + system_info : + { + rpm : [] + rpm_dev : ["gmp-devel"] + apt : [] + apt_dev : ["libgmp-dev"] + } +} diff --git a/products/mpc.pyconf b/products/mpc.pyconf new file mode 100644 index 0000000..12a55b8 --- /dev/null +++ b/products/mpc.pyconf @@ -0,0 +1,14 @@ +# Only used as a native product for dedicated opencv compilation +default : +{ + name : "mpc" + get_source : "system" + depend : [] + system_info : + { + rpm : [] + rpm_dev : ["libmpc-devel"] + apt : [] + apt_dev : ["libmpc-dev"] + } +} diff --git a/products/mpfr.pyconf b/products/mpfr.pyconf new file mode 100644 index 0000000..2ce649f --- /dev/null +++ b/products/mpfr.pyconf @@ -0,0 +1,14 @@ +# Only used as a native product for dedicated opencv compilation +default : +{ + name : "mpfr" + get_source : "system" + depend : [] + system_info : + { + rpm : [] + rpm_dev : ["mpfr-devel"] + apt : [] + apt_dev : ["libmpfr-dev"] + } +}