Uh oh!
There was an error while loading. Please reload this page.
build: log the found compiler version if too old - #30028
Closed
richardlau wants to merge 3 commits into
Closed
Conversation
`configure` will log a warning if the detected compiler is not new enough. Take some of the guesswork out of it by also logging the version of the compiler that was detected.
This comment has been minimized.
This comment has been minimized.
mscdex
commented
Oct 18, 2019
Contributor
Perhaps the output would be more clear/readable if the information in parentheses was moved to instead come after the words 'C++ compiler', like: |
Member
V8 CI to get info for #30020 https://ci.nodejs.org/job/node-test-commit-v8-linux/2564/ Edit: it's (CXX=g++, 4.9.4) |
sam-github
approved these changes
Oct 18, 2019
MemberAuthor
Done: --bash-4.2$ ./configureNode configure: Found Python 2.7.5...WARNING: C++ compiler (CXX=g++, 4.8.5) too old, need g++ 6.3.0 or clang++ 8.0.0INFO: Using floating patch "tools/icu/patches/64/source/common/putil.cpp" from "tools/icu"INFO: Using floating patch "tools/icu/patches/64/source/i18n/dtptngen.cpp" from "tools/icu"WARNING: warnings were emitted in the configure phaseINFO: configure completed successfully-bash-4.2$ |
nodejs-github-bot
commented
Oct 18, 2019
Collaborator
cjihrig
approved these changes
Oct 18, 2019
lpinca
approved these changes
Oct 18, 2019
addaleax
approved these changes
Oct 19, 2019
nodejs-github-bot
commented
Oct 19, 2019
Collaborator
gengjiawen
approved these changes
Oct 19, 2019
devnexen
approved these changes
Oct 19, 2019
Trott
commented
Oct 22, 2019
Member
Landed in 639085e |
Trott pushed a commit
that referenced
this pull request
Oct 22, 2019
`configure` will log a warning if the detected compiler is not new enough. Take some of the guesswork out of it by also logging the version of the compiler that was detected. PR-URL: #30028 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com>
nodejs-github-bot
commented
Oct 23, 2019
Collaborator
MylesBorins pushed a commit
that referenced
this pull request
Oct 23, 2019
`configure` will log a warning if the detected compiler is not new enough. Take some of the guesswork out of it by also logging the version of the compiler that was detected. PR-URL: #30028 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com>
Merged
targos pushed a commit
that referenced
this pull request
Nov 8, 2019
`configure` will log a warning if the detected compiler is not new enough. Take some of the guesswork out of it by also logging the version of the compiler that was detected. PR-URL: #30028 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com>
targos pushed a commit
that referenced
this pull request
Nov 10, 2019
`configure` will log a warning if the detected compiler is not new enough. Take some of the guesswork out of it by also logging the version of the compiler that was detected. PR-URL: #30028 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com>
targos pushed a commit
that referenced
this pull request
Nov 11, 2019
`configure` will log a warning if the detected compiler is not new enough. Take some of the guesswork out of it by also logging the version of the compiler that was detected. PR-URL: #30028 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
configurewill log a warning if the detected compiler is not newenough. Take some of the guesswork out of it by also logging the
version of the compiler that was detected.
Before:
After:
Checklist
make -j4 test(UNIX), orvcbuild test(Windows) passes