You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MAKEFLAGS (especially -j) are not overwritten in the build.sh. Setting default values if the flags are not supplied would be perfect but they should not take precedence over ones beeing set on the system.
Actual behavior / bug
Currently in the build.sh script (line 161 cmake --build . -- -j "$(nproc)") overwrites the -j option to the number of processors on the system. While this is fine for most systems on memory constrained ones this makes it impossible to build. (1Gb on RPi3)
Steps to reproduce
Steps to reproduce the behavior:
Set MAKEFLAGS Env var with -j 1
run build.sh
see that the build uses more than one processor
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
Versions
Platform
Expected behavior
MAKEFLAGS (especially
-j
) are not overwritten in the build.sh. Setting default values if the flags are not supplied would be perfect but they should not take precedence over ones beeing set on the system.Actual behavior / bug
Currently in the build.sh script (line 161
cmake --build . -- -j "$(nproc)"
) overwrites the-j
option to the number of processors on the system. While this is fine for most systems on memory constrained ones this makes it impossible to build. (1Gb on RPi3)Steps to reproduce
Steps to reproduce the behavior:
-j 1
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: