-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
doc: add note for build path #14354
doc: add note for build path #14354
Conversation
BUILDING.md
Outdated
@@ -174,6 +174,7 @@ Prerequisites: | |||
* Basic Unix tools required for some tests, | |||
[Git for Windows](http://git-scm.com/download/win) includes Git Bash | |||
and tools which can be included in the global `PATH`. | |||
* NOTE: If the path to your home directory contains a space, the build will likely fail. |
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.
I’d replace home
with build
directory, I don’t think the home directory should really have much of an influence.
Also, this is not specific to Windows. ;)
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.
Good to know. Where in the doc should it go?
@addaleax the reason why I put it in the Windows-specific section is because in #14337 the
I dropped the repo in my root directory, ran the |
Why not put it under While you're at it, could you wrap to 80 chars? |
BUILDING.md
Outdated
@@ -174,6 +174,7 @@ Prerequisites: | |||
* Basic Unix tools required for some tests, | |||
[Git for Windows](http://git-scm.com/download/win) includes Git Bash | |||
and tools which can be included in the global `PATH`. | |||
* NOTE: If the path to your build directory contains a space, the build will likely fail. |
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.
Nit: Get rid of NOTE:
. Just say it: If the path to your build directory contains a space, the build will likely fail.
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.
Just make sure it doesn't get sucked into the GfW bullet point. (maybe add a blank line)
BUILDING.md
Outdated
@@ -174,6 +174,7 @@ Prerequisites: | |||
* Basic Unix tools required for some tests, | |||
[Git for Windows](http://git-scm.com/download/win) includes Git Bash | |||
and tools which can be included in the global `PATH`. | |||
* NOTE: If the path to your build directory contains a space, the build will likely fail. |
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.
Just make sure it doesn't get sucked into the GfW bullet point. (maybe add a blank line)
Ping @refack @addaleax and @vsemozhetbyt . please take another look, I added a commit the addressed the standing feedback |
Landed in 43029da |
PR-URL: nodejs/node#14354 Fixes: nodejs/node#14337 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
PR-URL: nodejs/node#14354 Fixes: nodejs/node#14337 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Fixes: #14337
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passesAffected core subsystem(s)
doc