-
-
Notifications
You must be signed in to change notification settings - Fork 31.6k
doc: spliting building steps for unix and macos #58239
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
base: main
Are you sure you want to change the base?
Conversation
macOS is not different from other Unix-like system on this point, it's only a matter of whether |
@aduh95 I'm totally open to suggestion about what should it be the best way of document this. But I don't think my issue is related to the path of g++-12. Because it is throwing the following error:
Maybe if I just move the |
Reading the original issue, it doesn't seem to be Unix-related, but Ubuntu-specific. I suggest we just remove the export, I doubt it's even necessary on Ubuntu. |
@aduh95 I can confirm that on Ubuntu fails if I don't specify the export CXX. But I'm getting a warning when executing ./configure telling me that I have an older version than g++-12. I can proceed by deleting only the export line, but for Ubuntu it'll fail :/ |
@aduh95 what about this proposal? I changed the BUILDING.md content. |
Currently, there is an error when executing export: CXX=g++-12 on macOS. Without it, it compiles fine. So, we split the step into two caterogies: steps for unix and steps for macOS Fixes: nodejs#58219 Restoring previous BUILDING.md new doc proposal for g++-12 export command removing non related line change restoring end of file restoring comment proposal
6869471
to
d646198
Compare
Currently, there is an error when executing
export: CXX=g++-12
on macOS. Without it, it compiles fine. So, we split the step into two caterogies: steps for unix and steps for macOSFixes: #58219