Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
3ee97489
Kaydet (Commit)
3ee97489
authored
Agu 28, 2012
tarafından
Noel Grandin
Kaydeden (comit)
David Tardon
Agu 28, 2012
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
allow separate setting of parallelism for subseq. tests
Change-Id: I5a5444e8ee95b0fd95a97c31c94ab0f9c3935abb
üst
85e40d78
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
1 deletion
+19
-1
Makefile.top
Makefile.top
+1
-1
config_host.mk.in
config_host.mk.in
+1
-0
configure.in
configure.in
+17
-0
No files found.
Makefile.top
Dosyayı görüntüle @
3ee97489
...
...
@@ -271,7 +271,7 @@ $(1).clean:
cd
$
(
1
)
&&
$(GNUMAKE)
-j
$(GMAKE_PARALLELISM)
$(GMAKE_OPTIONS)
clean
gb_PARTIALBUILD
=
T
$(1).subsequentcheck
:
cd
$
(
1
)
&&
$(GNUMAKE)
-j
$(
GMAKE
_PARALLELISM)
$(GMAKE_OPTIONS)
subsequentcheck
gb_PARTIALBUILD
=
T
cd
$
(
1
)
&&
$(GNUMAKE)
-j
$(
CHECK
_PARALLELISM)
$(GMAKE_OPTIONS)
subsequentcheck
gb_PARTIALBUILD
=
T
$(1).deliver
:
@
true
...
...
config_host.mk.in
Dosyayı görüntüle @
3ee97489
...
...
@@ -46,6 +46,7 @@ export CC=@CC@
export CC_FOR_BUILD=@CC_FOR_BUILD@
export CDR_CFLAGS=@CDR_CFLAGS@
export CDR_LIBS=@CDR_LIBS@
export CHECK_PARALLELISM=@CHECK_PARALLELISM@
export CLASSPATH=@CLASSPATH@
export CL_X64=@CL_X64@
export CLUCENE_CFLAGS=@CLUCENE_CFLAGS@
...
...
configure.in
Dosyayı görüntüle @
3ee97489
...
...
@@ -2068,6 +2068,12 @@ AC_ARG_WITH(max-jobs,
Defaults to 1, unless you configure --enable-icecream - then to 10.]),
,)
AC_ARG_WITH(check-jobs,
AS_HELP_STRING([--with-check-jobs],
[Maximum number of jobs that will be issued at the same time during 'make subsequenttest'.
Default value is the same as 'max-jobs'. Useful because the subsequent tests are very lighweight.]),
,)
dnl ===================================================================
dnl MacOSX build and runtime environment options
dnl ===================================================================
...
...
@@ -12165,6 +12171,17 @@ AC_MSG_RESULT([per module:$GMAKE_MODULE_PARALLELISM, for tail_build:$GMAKE_PARAL
AC_SUBST(GMAKE_PARALLELISM)
AC_SUBST(GMAKE_MODULE_PARALLELISM)
dnl ===================================================================
dnl Number of parallel jobs to be executed during subsequenttest
dnl ===================================================================
AC_MSG_CHECKING([for maximum no. of jobs during subsequenttest])
CHECK_PARALLELISM=$GMAKE_PARALLELISM
if test "$with_check_jobs" != ""; then
CHECK_PARALLELISM="$with_check_jobs"
fi
AC_MSG_RESULT([$CHECK_PARALLELISM])
AC_SUBST(CHECK_PARALLELISM)
dnl ===================================================================
dnl Setting up the environment.
dnl ===================================================================
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment