Uh oh!
There was an error while loading. Please reload this page.
[deps/zlib]: Fixed cpu-features.h not found during building for Android aarch64 - #49828
[deps/zlib]: Fixed cpu-features.h not found during building for Android aarch64#49828MatteoBax wants to merge 1 commit into
Conversation
nodejs-github-bot
commented
Sep 23, 2023
Review requested:
|
Thanks for the pull request. I don't think it's appropriate to modify the user's .bashrc, and using shell syntax in the build scripts is suboptimal, but what you can do instead is:
|
MatteoBax
commented
Sep 23, 2023
I've done. |
This comment was marked as off-topic.
This comment was marked as off-topic.
Uh oh!
There was an error while loading. Please reload this page.
nodejs-github-bot
commented
Sep 23, 2023
How do I change the first commit message? |
lpinca
commented
Sep 25, 2023
@MatteoBax rebase and force push. |
bnoordhuis
commented
Sep 28, 2023
@MatteoBax try rebase + squash ( |
MatteoBax
commented
Sep 28, 2023
I've done. |
bnoordhuis
commented
Sep 28, 2023
Can you squash into a single commit? I still count 6. |
MatteoBax
commented
Sep 28, 2023
I just squashed in a single commit. |
nodejs-github-bot
commented
Sep 28, 2023
zongou
commented
Sep 28, 2023
MatteoBax
commented
Sep 29, 2023
MatteoBax
commented
Sep 29, 2023
What shall I do that node-test-commit, node-test-commit-osx and node-test-pull-request checks failed? |
richardlau
commented
Sep 29, 2023
@MatteoBax the node-test-commit-osx build failed because while it was queued to run this PR was force pushed and git removed the old commit that the check was scheduled to run on. One of those force pushes has introduced additional unrelated changes to this PR to tools/osx-notarize.sh. If you could undo those changes I can restart the CI runs -- once we've started CI runs please do not update the PR unless asked to do so as every new commit or force push would require us to restart the CI runs from the beginning again. |
I've done. |
nodejs-github-bot
commented
Sep 29, 2023
nodejs-github-bot
commented
Sep 29, 2023
richardlau
commented
Sep 29, 2023
Landed in 16ac5e1. |
If i add -Wno-implicit-function-declaration option to cflags these problems disappear.Did you do this too? The next problems are: How did you fix them? I can only compile with your workflow. @zongou I think it's best if you open a pull request to resolve these issues. |
zongou
commented
Sep 29, 2023
i did not encounter this problem, i guess this step have skipped this problem echo> test/cctest/test_crypto_clienthello.cc |
Fixed cpu-features.h not found issue. Co-Authored-By: Luigi Pinca <luigipinca@gmail.com> Fixes: nodejs#49766 PR-URL: nodejs#49828 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
Fixed#49766
I fixed cpu-features.h not found during building for Android aarch64 but now the building problems are:
To solve this problem I created an environment variable called NDK_PATH that points to the ndk installation folder.
In the common.gypi file I added another argument to cflags which contains the path to the cpu-features.h file.
I changed only release configuration.