Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compiling issue #281

Open
Spoutnik31 opened this issue Jun 30, 2024 · 0 comments
Open

Compiling issue #281

Spoutnik31 opened this issue Jun 30, 2024 · 0 comments

Comments

@Spoutnik31
Copy link

Good morning,
When I wanted to download httrack I saw the method to compile it and noticed that it was written a certain way:
./configure && make -j8 && make install DESTDIR=/
I then noticed make -j8 and I said to myself that a processor with less than 8 cores would not be able to execute this command, so I suggest you correct and replace with:
./configure && make -j$(nproc) && make install DESTDIR=/
Here I refer to the nproc environment variable which returns the number of cores to avoid the computer crashing if it had less than 8 cores.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant