File tree 3 files changed +14
-7
lines changed
3 files changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,9 @@ Features
41
41
42
42
* Added option to disable re-using TCP connections to the ElasticSearch output
43
43
44
+ * Added separate env loading file and support for NUM_JOBS env var to Windows
45
+ build (#971).
46
+
44
47
0.7.3 (2014-MM-DD)
45
48
==================
46
49
Original file line number Diff line number Diff line change 1
1
@ echo off
2
- set BUILD_DIR = %CD% \build
3
- set CTEST_OUTPUT_ON_FAILURE = 1
2
+ call env.bat
4
3
5
- setlocal ENABLEDELAYEDEXPANSION
6
- set NEWGOPATH = %BUILD_DIR% \heka
7
- if NOT " %GOBIN% " == " " (set p=!PATH:%GOBIN% ; =! ) else (set p=!PATH! )
8
- endlocal & set GOPATH = %NEWGOPATH% & set GOBIN = %NEWGOPATH% \bin& set PATH = %p% ;%NEWGOPATH% \bin;
4
+ if " %NUM_JOBS% " == " " (set NUM_JOBS=1)
9
5
10
6
if NOT exist %BUILD_DIR% mkdir %BUILD_DIR%
11
7
cd %BUILD_DIR%
12
8
cmake -DINCLUDE_MOZSVC=false -DCMAKE_BUILD_TYPE=release -G" MinGW Makefiles" ..
13
- mingw32-make
9
+ mingw32-make -j %NUM_JOBS%
Original file line number Diff line number Diff line change
1
+ @ echo off
2
+ set BUILD_DIR = %CD% \build
3
+ set CTEST_OUTPUT_ON_FAILURE = 1
4
+
5
+ setlocal ENABLEDELAYEDEXPANSION
6
+ set NEWGOPATH = %BUILD_DIR% \heka
7
+ if NOT " %GOBIN% " == " " (set p=!PATH:%GOBIN% ; =! ) else (set p=!PATH! )
8
+ endlocal & set GOPATH = %NEWGOPATH% & set GOBIN = %NEWGOPATH% \bin& set PATH = %p% ;%NEWGOPATH% \bin;
You can’t perform that action at this time.
0 commit comments