diff options
author | Lukas Larsson <[email protected]> | 2017-03-21 13:40:08 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2017-04-21 14:30:22 +0200 |
commit | f30d131bd979e29b68fb7d9ff515c61a246201f4 (patch) | |
tree | aa034229bef00fcb99d2e50ecbcab2b7700df50d /HOWTO | |
parent | 621cedccc78581330b9628c559b0d851c303564f (diff) | |
download | otp-f30d131bd979e29b68fb7d9ff515c61a246201f4.tar.gz otp-f30d131bd979e29b68fb7d9ff515c61a246201f4.tar.bz2 otp-f30d131bd979e29b68fb7d9ff515c61a246201f4.zip |
erts: Deprecate the non-smp emulators
Diffstat (limited to 'HOWTO')
-rw-r--r-- | HOWTO/INSTALL.md | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/HOWTO/INSTALL.md b/HOWTO/INSTALL.md index 8587774c12..bec09bdae1 100644 --- a/HOWTO/INSTALL.md +++ b/HOWTO/INSTALL.md @@ -343,10 +343,12 @@ use the `--prefix` argument like this: `./configure --prefix=<Dir>`. Some of the available `configure` options are: * `--prefix=PATH` - Specify installation prefix. - -* `--{enable,disable}-threads` - Thread support. This is enabled by default if possible. -* `--{enable,disable}-smp-support` - SMP support (enabled by default if - a usable POSIX thread library or native Windows threads is found) +* `--enable-plain-emulator` - Build a threaded emulator that only + uses one scheduler. This emulator type is deprecated and will be + removed in a future release. +* `--disable-threads` - Build a non-threaded emulator. This emulator type + is deprecated and will be + removed in a future release. * `--{enable,disable}-kernel-poll` - Kernel poll support (enabled by default if possible) * `--{enable,disable}-hipe` - HiPE support (enabled by default on supported |