-
-
Notifications
You must be signed in to change notification settings - Fork 37
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
nodejs v17.1.0 #221
nodejs v17.1.0 #221
Conversation
…nda-forge-pinning 2021.11.09.18.53.34
Hi! This is the friendly automated conda-forge-linting service. I just wanted to let you know that I linted all conda-recipes in your PR ( |
@conda-forge-admin please rerender |
…nda-forge-pinning 2021.11.23.20.00.37
The mac builds are all failing during the build of bundled openssl, which is weird because we are asking it not to build the bundled openssl. The linux builds are correctly linking the openssl dependency. |
Everything working now except ppc/aarch64. aarch64 appears to just be running out of time, while ppc is failing with:
|
Some Googling (a bit out of my depth) suggests that issignaling is an optional extension in glibc. It's unclear if the patch is missing a required condition, or if we should have an extra define in CXXFLAGS to enable the extension. |
|
@conda-forge-admin please rerender |
…nda-forge-pinning 2021.11.26.06.16.55
Using this works locally for me: diff --git a/deps/v8/src/execution/ppc/simulator-ppc.cc b/deps/v8/src/execution/ppc/simulator-ppc.cc
index 97e47bc0..3ac0cff8 100644
--- a/deps/v8/src/execution/ppc/simulator-ppc.cc
+++ b/deps/v8/src/execution/ppc/simulator-ppc.cc
@@ -4751,7 +4751,8 @@ void Simulator::ExecuteGeneric(Instruction* instr) {
bit_cast<float, uint32_t>(static_cast<uint32_t>(double_bits >> 32));
double_bits = bit_cast<uint64_t, double>(static_cast<double>(f));
// Preserve snan.
- if (issignaling(f)) {
+ float snan = std::numeric_limits<float>::signaling_NaN();
+ if (std::memcmp(&snan, &f, sizeof(float)) == 0) {
double_bits &= 0xFFF7FFFFFFFFFFFFU; // Clear bit 51.
}
set_d_register(t, double_bits);
@@ -4764,7 +4765,8 @@ void Simulator::ExecuteGeneric(Instruction* instr) {
uint64_t float_bits = static_cast<uint64_t>(
bit_cast<uint32_t, float>(static_cast<float>(b_val)));
// Preserve snan.
- if (issignaling(b_val)) {
+ double snan = std::numeric_limits<double>::signaling_NaN();
+ if (std::memcmp(&snan, &b_val, sizeof(double)) == 0) {
float_bits &= 0xFFBFFFFFU; // Clear bit 22.
}
// fp result is placed in both 32bit halfs of the dst. |
@xhochy awesome! I'll apply that patch if the I can't find any adequate documentation for what flags should ensure |
I would guess it is an unsupported toolchain. Looking at the glibc sources, it seems like |
Ah, ok. I thought I found it in the changelog for 2.18 from 2013, so figured it was probably there. |
Ah, could be that it was already there. We're on 2.17 though :( |
02a3e4a
to
fdede9b
Compare
Success! |
It is very likely that the current package version for this feedstock is out of date.
Notes for merging this PR:
Checklist before merging this PR:
license_file
is packagedNote that the bot will stop issuing PRs if more than 3 Version bump PRs generated by the bot are open. If you don't want to package a particular version please close the PR.
NEW: If you want these PRs to be merged automatically, make an issue with
@conda-forge-admin,
please add bot automerge
in the title and merge the resulting PR. This command will add our new bot automerge feature to your feedstock!Closes: #217
If this PR was opened in error or needs to be updated please add the
bot-rerun
label to this PR. The bot will close this PR and schedule another one. If you do not have permissions to add this label, you can use the phrase@conda-forge-admin, please rerun bot
in a PR comment to have theconda-forge-admin
add it for you.This PR was created by the regro-cf-autotick-bot.
The regro-cf-autotick-bot is a service to automatically track the dependency graph, migrate packages, and propose package version updates for conda-forge. If you would like a local version of this bot, you might consider using rever. Rever is a tool for automating software releases and forms the backbone of the bot's conda-forge PRing capability. Rever is both conda (
conda install -c conda-forge rever
) and pip (pip install re-ver
) installable.Finally, feel free to drop us a line if there are any issues!
This PR was generated by https://github.com/regro/autotick-bot/actions/runs/1441384389, please use this URL for debugging
Here is a list of all the pending dependencies (and their versions) for this repo. Please double check all dependencies before merging.
Dependency Analysis
Please note that this analysis is highly experimental. The aim here is to make maintenance easier by inspecting the package's dependencies. Importantly this analysis does not support optional dependencies, please double check those before making changes. If you do not want hinting of this kind ever please add
bot: inspection: false
to yourconda-forge.yml
. If you encounter issues with this feature please ping the bot teamconda-forge/bot
.Analysis of the source code shows a discrepancy between the library's imports and the package's stated requirements in the meta.yaml.
Packages found by inspection but not in the meta.yaml: