Increase vivado processes for extra parts.

Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
This commit is contained in:
Keith Rothman 2020-02-10 12:25:00 -08:00
parent 4691ba3183
commit 6129df827f
1 changed files with 4 additions and 1 deletions

View File

@ -95,7 +95,10 @@ set -e
# Generate extra parts file (tilegrid, tileconn, part yaml, part json and package_pin)
set +e
make db-extras-${XRAY_SETTINGS}-parts -j $CORES
(
export MAX_VIVADO_PROCESS=$((CORES/2 < 20 ? CORES/2 : 20))
make db-extras-${XRAY_SETTINGS}-parts -j $CORES
)
EXTRAS_PARTS_RET=$?
set -e