Skip to content
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

deps: update zlib to upstream 8603eee #34183

Closed
wants to merge 2 commits into from
Closed

Commits on Jul 3, 2020

  1. deps: update zlib to upstream 8603eee

    Updated as described in doc/guides/maintaining-zlib.md.
    targos committed Jul 3, 2020
    Configuration menu
    Copy the full SHA
    fc19eff View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2020

  1. deps: fix zlib compilation for CPUs without SIMD features

    Fix the compile flags so that zlib can run on CPUs that do
    not have SSSE3/SSE4.2/etc. Do not compile zlib with flags that
    indicate that those features are available, and instead enable
    them selectively for functions that use them.
    
    There are probably better way to do this, e.g. through gyp file
    modifications as suggested in the issue. However, this patch
    should do just fine until that happens.
    
    Fixes: nodejs#32553
    
    PR-URL: nodejs#32627
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    addaleax authored and targos committed Jul 4, 2020
    Configuration menu
    Copy the full SHA
    94e4011 View commit details
    Browse the repository at this point in the history