Browse Source

Update README.md specific to Docker toolchain build on macOS platform.

static-analysis
Christoph Scholtes 1 year ago
parent
commit
fdef248898
1 changed files with 8 additions and 4 deletions
  1. +8
    -4
      README.md

+ 8
- 4
README.md View File

@@ -68,20 +68,24 @@ make -j8 docker-plugin-build PLUGIN_DIR=...
``` ```
You may replace 8 with your desired number of parallel jobs, such as your number of logical cores. You may replace 8 with your desired number of parallel jobs, such as your number of logical cores.


**NOTE for macOS platform**: You may have to add `MAKE=make` to the build command on macOS.
Built plugin packages are placed in the `plugin-build/` directory.

#### Notes for building and using the Docker-based toolchain on macOS

- Ensure that Docker Desktop has sufficient amount of resources (RAM, disk space) allocated to build the toolchain!
- You may have to add `MAKE=make` to the build command::

```bash ```bash
MAKE=make make -j8 docker-plugin-build PLUGIN_DIR=... MAKE=make make -j8 docker-plugin-build PLUGIN_DIR=...
``` ```


Built plugin packages are placed in the `plugin-build/` directory.

### Rack SDK management ### Rack SDK management


The latest Rack SDKs for all supported platforms are downloaded during the toolchain build. The latest Rack SDKs for all supported platforms are downloaded during the toolchain build.


The SDKs can be updated to the latest version (defined in the `Makefile`) as follows: The SDKs can be updated to the latest version (defined in the `Makefile`) as follows:


```
```bash
make rack-sdk-clean make rack-sdk-clean
make rack-sdk-all make rack-sdk-all
``` ```


Loading…
Cancel
Save