]> SALOME platform Git repositories - tools/sat_salome.git/commitdiff
Salome HOME
 add gcc system dependencies
authorNicolas CROUZET - SFME/LGLS <crouzet@is228840.intra.cea.fr>
Tue, 10 Nov 2020 08:18:12 +0000 (09:18 +0100)
committerNicolas CROUZET - SFME/LGLS <crouzet@is228840.intra.cea.fr>
Tue, 10 Nov 2020 08:18:12 +0000 (09:18 +0100)
applications/GCC-6.3.0.pyconf
products/gcc.pyconf
products/gmp.pyconf [new file with mode: 0644]
products/mpc.pyconf [new file with mode: 0644]
products/mpfr.pyconf [new file with mode: 0644]

index c85d0d68fee8f339e89a31692ac1741899e8f4c1..d7b03c93e3d17f3b336a1523a44f8a36c6fd3788 100644 (file)
@@ -16,6 +16,9 @@ APPLICATION :
     {
         # PREREQUISITES :
         gcc : '6.3.0'
+        mpc : 'native'
+        gmp : 'native'
+        mpfr : 'native'
     }
     test_base : 
     {
index 376bc9174df655f2bb467911e0fa9d963c34563d..b3ad62f98419609abf409263197538a320982f1e 100644 (file)
@@ -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 (file)
index 0000000..19dfdf9
--- /dev/null
@@ -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 (file)
index 0000000..12a55b8
--- /dev/null
@@ -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 (file)
index 0000000..2ce649f
--- /dev/null
@@ -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"]
+    }
+}