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: add template for generated headers #42616

Closed
wants to merge 6 commits into from

Commits on Apr 25, 2022

  1. deps: add template for generated headers

    OpenSSL 3.0 has a number of header files that are generated, and
    currently these headers are copied into the architecture specific
    directories. This is done for each asm type, 'asm', 'asm_avx2', and
    'no-asm' which has takes up quite a lot of disk space and also becomes
    an issue with the headers.tar file which has increased due to this.
    
    This commit adds copies the headers to a common directory for the
    architecture, for example with linux-x86_64 there will be a directory
    named deps/openssl/config/archs/linux-x86_64/common/include where the
    headers will be copied (into subdirectories 'openssl' and 'crypto'.
    And in the original locations a header file with the same name will be
    generated which points (includes) the common header file.
    
    Fixes: nodejs#42081
    danbev committed Apr 25, 2022
    Configuration menu
    Copy the full SHA
    e90569f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    952bab0 View commit details
    Browse the repository at this point in the history
  3. deps: remove archs/aix64-gcc

    This arch was renamed to clarify that it used the aix assembler (as) and
    not the gnu assembler. It was removed from the Makefile and not being
    built but would still be picked up by make targets like the header-tar
    target.
    
    Refs: openssl/openssl@178fa72ed5
    danbev committed Apr 25, 2022
    Configuration menu
    Copy the full SHA
    81601b5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0954a68 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    de67f45 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    06334ae View commit details
    Browse the repository at this point in the history