Skip to content

Commit

Permalink
build: Pass parallelism to ninja ports
Browse files Browse the repository at this point in the history
  • Loading branch information
mintsuki committed Dec 23, 2023
1 parent 4a88736 commit f018d82
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion recipes/cxxshim
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ build() {
-Dinstall_headers=true \
${source_dir}

ninja
ninja -j${parallelism}
}

package() {
Expand Down
2 changes: 1 addition & 1 deletion recipes/frigg
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ build() {
-Dbuild_tests=disabled \
${source_dir}

ninja
ninja -j${parallelism}
}

package() {
Expand Down
2 changes: 1 addition & 1 deletion recipes/libepoxy
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ build() {
-Dtests=false \
${source_dir}

ninja
ninja -j${parallelism}
}

package() {
Expand Down
2 changes: 1 addition & 1 deletion recipes/libxkbcommon
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ build() {
-Denable-wayland=false \
"${source_dir}"

ninja
ninja -j${parallelism}
}

package() {
Expand Down
2 changes: 1 addition & 1 deletion recipes/llvm
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ build() {
-Wno-dev \
${source_dir}/llvm

ninja
ninja -j${parallelism}
}

package() {
Expand Down
2 changes: 1 addition & 1 deletion recipes/mesa
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ build() {

meson setup --cross-file cross_file.txt --prefix=/usr --libdir=lib --buildtype=debugoptimized -Dglx=gallium-xlib -Dplatforms=x11 -Ddri-drivers= -Dgallium-drivers=swrast -Dvulkan-drivers= -Dllvm=enabled ${source_dir}

ninja
ninja -j${parallelism}
}

package() {
Expand Down
2 changes: 1 addition & 1 deletion recipes/mlibc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ build() {
-Ddisable_libgcc_dependency=true \
${source_dir}

ninja
ninja -j${parallelism}
}

package() {
Expand Down
2 changes: 1 addition & 1 deletion recipes/mlibc-headers
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ build() {
-Ddisable_intl_option=true \
${source_dir}

ninja
ninja -j${parallelism}
}

package() {
Expand Down

0 comments on commit f018d82

Please sign in to comment.