File tree 1 file changed +10
-2
lines changed
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -206,7 +206,10 @@ build perl from sources.
206
206
207
207
Simply run I<make> and wait:
208
208
209
- make 2>&1 | tee log.make
209
+ make -jn 2>&1 | tee log.make
210
+
211
+ where I<n> is the maximum number of simultaneous compilations you want;
212
+ omitting this parameter is the same as specifying C<-j1>.
210
213
211
214
=head1 TEST ON CYGWIN
212
215
@@ -217,7 +220,12 @@ There are two steps to running the test suite:
217
220
cd t; ./perl harness 2>&1 | tee ../log.harness
218
221
219
222
The same tests are run both times, but more information is provided when
220
- running as C<./perl harness>.
223
+ running as C<./perl harness>, and you can run the tests in parallel by
224
+ instead specifying
225
+
226
+ cd t; TEST_JOBS=n ./perl harness 2>&1 | tee ../log.harness
227
+
228
+ where I<n> is the maximum number of tests to run simulataneously.
221
229
222
230
Test results vary depending on your host system and your Cygwin
223
231
configuration. If a test can pass in some Cygwin setup, it is always
You can’t perform that action at this time.
0 commit comments