-
-
Notifications
You must be signed in to change notification settings - Fork 10.1k
Fix #5730: add gcc and make to the list of requirements #5731
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
Conversation
@@ -21,6 +21,7 @@ requirements you’ll need to make sure your system has before you start. | |||
- [NodeJS](https://nodejs.org/), or another JavaScript runtime (Jekyll 2 and | |||
earlier, for CoffeeScript support). | |||
- [Python 2.7](https://www.python.org/downloads/) (for Jekyll 2 and earlier) | |||
- [GCC](https://gcc.gnu.org/install/) and [Make](https://www.gnu.org/software/make/) (in case your system doesn't have them installed) |
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.
Should we include a way to check whether these are installed, e.g. gcc --version
and make --version
?
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.
@parkr Yes, that seems great. Also, gcc -v and make -v work as well, so we can use the shorter versions.
What syntax do you suggest for adding the information? A note, a code block or just inline code?
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.
inline code is fine for me.
Fixes #5730. |
Updated. |
There 8000 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.
Thanks!
@jekyllbot: merge +site |
I am just unsure should we provide the link to the GNU make page, as it's dull and its installation instructions are nothing less dull. Also, make can be installed via the
build-essentials
package.