docs: remove OpenSSL section from README (#10186)
Marten Seemann committed
Oct 26, 2023 at 18:30 UTC
4f303d3208babbe7f5bb40a312a24d73dbf9c9dd
1 file changed
-10
README.md
-10
@@ -88,7 +88,6 @@ Before opening an issue, consider using one of the following locations to ensure
88
- [Install Go](#install-go)
89
- [Download and Compile IPFS](#download-and-compile-ipfs)
90
- [Cross Compiling](#cross-compiling)
91
- - [OpenSSL](#openssl)
91
- [Troubleshooting](#troubleshooting)
92
- [Getting Started](#getting-started)
93
- [Usage](#usage)
@@ -327,15 +326,6 @@ Compiling for a different platform is as simple as running:
326
make build GOOS=myTargetOS GOARCH=myTargetArchitecture
327
```
328
330
-##### OpenSSL
331
-
332
-To build go-ipfs with OpenSSL support, append `GOTAGS=openssl` to your `make` invocation. Building with OpenSSL should significantly reduce the background CPU usage on nodes that frequently make or receive new connections.
333
-
334
-Note: OpenSSL requires CGO support and, by default, CGO is disabled when cross-compiling. To cross-compile with OpenSSL support, you must:
335
-
336
-1. Install a compiler toolchain for the target platform.
337
-2. Set the `CGO_ENABLED=1` environment variable.
338
-
329
#### Troubleshooting
330
331
- Separate [instructions are available for building on Windows](docs/windows.md).