summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Bevenius <daniel.bevenius@gmail.com>2022-04-14 08:44:32 +0200
committerDaniel Bevenius <daniel.bevenius@gmail.com>2022-04-28 13:47:19 +0200
commit4f1f14e5cdf028870c577aa32b3f87a82c2bb0cf (patch)
treea4e656e5bff0f92147d94fa7bf39df79c8389064
parent33bc537d419f21ca2d0fe46d7b4e27b0a5638158 (diff)
downloadnode-new-4f1f14e5cdf028870c577aa32b3f87a82c2bb0cf.tar.gz
deps: add note about removing asm archs
PR-URL: https://github.com/nodejs/node/pull/42616 Fixes: https://github.com/nodejs/node/issues/42081 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
-rw-r--r--deps/openssl/README.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/deps/openssl/README.md b/deps/openssl/README.md
index 225bfba8e7..d2d1d26c18 100644
--- a/deps/openssl/README.md
+++ b/deps/openssl/README.md
@@ -75,6 +75,18 @@ little)
These are listed in [config/Makefile](config/Makefile).
Please refer [config/opensslconf_asm.h](config/opensslconf_asm.h) for details.
+To remove or add an architecture the templates need to be updated for which
+there are two:
+* include_asm.h.tmpl
+* include_no-asm.h.tmpl
+
+Remove the architecture in question from these files and then run:
+```console
+$ make generate-headers
+```
+Also remove the architecture from the list of supported ASM architectures in
+[README.md](../README.md#supported-architectures-for-use-of-asm)
+
### Upgrading OpenSSL
Please refer to [maintaining-openssl](../../doc/contributing/maintaining-openssl.md).