Browse code

For some unclear reason, using 'make -j8' actually slows down compilation of the package on the Windows build machines. Turning off multiple jobs compilation for now.

Hervé Pagès authored on 12/03/2018 15:07:20
Showing 1 changed files
... ...
@@ -1,6 +1,6 @@
1
-INSTALLprepend: MAKE="make -j4"
2
-INSTALLprepend.win: set MAKE=make -j8 &&
3
-BUILDprepend: MAKE="make -j4"
4
-BUILDprepend.win: set MAKE=make -j8 &&
5
-BUILDBINprepend: MAKE="make -j4"
6
-BUILDBINprepend.win: set MAKE=make -j8 &&
1
+#INSTALLprepend: MAKE="make -j4"
2
+#INSTALLprepend.win: set MAKE=make -j8 &&
3
+#BUILDprepend: MAKE="make -j4"
4
+#BUILDprepend.win: set MAKE=make -j8 &&
5
+#BUILDBINprepend: MAKE="make -j4"
6
+#BUILDBINprepend.win: set MAKE=make -j8 &&
Browse code

Use 8 jobs to compile the package on the Windows build machines.

Hervé Pagès authored on 11/03/2018 07:25:32
Showing 1 changed files
... ...
@@ -1,6 +1,6 @@
1 1
 INSTALLprepend: MAKE="make -j4"
2
-INSTALLprepend.win: set MAKE=make -j4 &&
2
+INSTALLprepend.win: set MAKE=make -j8 &&
3 3
 BUILDprepend: MAKE="make -j4"
4
-BUILDprepend.win: set MAKE=make -j4 &&
4
+BUILDprepend.win: set MAKE=make -j8 &&
5 5
 BUILDBINprepend: MAKE="make -j4"
6
-BUILDBINprepend.win: set MAKE=make -j4 &&
6
+BUILDBINprepend.win: set MAKE=make -j8 &&
Browse code

Trying to speed up installation/compilation of the package on the Windows build machines.

Hervé Pagès authored on 10/03/2018 02:52:32
Showing 1 changed files
... ...
@@ -1,3 +1,6 @@
1 1
 INSTALLprepend: MAKE="make -j4"
2
+INSTALLprepend.win: set MAKE=make -j4 &&
2 3
 BUILDprepend: MAKE="make -j4"
4
+BUILDprepend.win: set MAKE=make -j4 &&
3 5
 BUILDBINprepend: MAKE="make -j4"
6
+BUILDBINprepend.win: set MAKE=make -j4 &&
Browse code

Trying to speed up installation/compilation of the package on the build machines. Only Linux/Mac for now. Windows will follow (this is actually where we're most interested in speeding things up).

Hervé Pagès authored on 09/03/2018 18:13:10
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,3 @@
1
+INSTALLprepend: MAKE="make -j4"
2
+BUILDprepend: MAKE="make -j4"
3
+BUILDBINprepend: MAKE="make -j4"