-
Notifications
You must be signed in to change notification settings - Fork 271
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
Documentation fixes #133
base: master
Are you sure you want to change the base?
Documentation fixes #133
Conversation
@@ -394,7 +394,7 @@ Enable the option `#define DISPLAY_ROTATE_180_DEGREES` in `config.h`. This shoul | |||
|
|||
Edit the file `config.h` in a text editor (a command line one such as `pico`, `vim`, `nano`, or SSH map the drive to your host), and find the appropriate line in the file. Add comment lines `//` in front of that text to disable the option, or remove the `//` characters to enable it. | |||
|
|||
After having edited and saved the file, reissue `make -j` in the build directory and restart fbcp-ili9341. | |||
After having edited and saved the file, reissue ``make -j `nproc` `` in the build directory and restart fbcp-ili9341. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, is make -j
not enough to get to parallel compilation? Or does that not work in some cases?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To be honest I don't really know if -j is a problem. The docs say
If there is nothing looking like an integer after the ‘-j’ option, there is no limit on the number of job slots.
What effect that has I don't know, I'm just used to always using nproc.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, let's go with just make -j
then, no need to specify the nproc
.
Don't think this is a problem for a small project like this but I was doing
some Linux kernel builds yesterday where I usually use nproc and I just
used -j and my machine deadlocked and needed to be pulled from the wall :/
…On Sun, Apr 5, 2020 at 6:02 AM juj ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In README.md
<#133 (comment)>:
> @@ -394,7 +394,7 @@ Enable the option `#define DISPLAY_ROTATE_180_DEGREES` in `config.h`. This shoul
Edit the file `config.h` in a text editor (a command line one such as `pico`, `vim`, `nano`, or SSH map the drive to your host), and find the appropriate line in the file. Add comment lines `//` in front of that text to disable the option, or remove the `//` characters to enable it.
-After having edited and saved the file, reissue `make -j` in the build directory and restart fbcp-ili9341.
+After having edited and saved the file, reissue ``make -j `nproc` `` in the build directory and restart fbcp-ili9341.
Ok, let's go with just make -j then, no need to specify the nproc.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#133 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AD7JRHDN4445RPF6PG5IZRTRK77FDANCNFSM4LTPNSPA>
.
|
Just some small observations I made. Cool project, will see if I can find time to contribute.