diff options
author | Björn Gustavsson <bjorn@erlang.org> | 2017-05-12 13:54:32 +0200 |
---|---|---|
committer | Björn Gustavsson <bjorn@erlang.org> | 2017-05-16 10:19:37 +0200 |
commit | 4b216f70be3403bb7c102e7ac1a91b1ee4805c33 (patch) | |
tree | 9343836986b792c97e98cb281fce6cf03c6f39b4 /make/otp.mk.in | |
parent | 773c4d4f0416f25e3c0c6939f8d0871dc4486bab (diff) | |
download | erlang-4b216f70be3403bb7c102e7ac1a91b1ee4805c33.tar.gz |
Let --enable-lock-counter build an additional emulator
"./configure --enable-lock-counter" would modify the behavior
of the default emulator (usually SMP).
To make lock counting more accessible, change --enable-lock-counter
to build an additional emulator in the same way as:
(cd erts/emulator && make lcnt)
(The next commit will make it easier to start the built lock-counter
emulator.)
Diffstat (limited to 'make/otp.mk.in')
-rw-r--r-- | make/otp.mk.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/make/otp.mk.in b/make/otp.mk.in index cd4572d81b..83bab7065d 100644 --- a/make/otp.mk.in +++ b/make/otp.mk.in @@ -49,6 +49,7 @@ DEFAULT_TARGETS = opt debug release release_docs clean docs DEFAULT_FLAVOR=@DEFAULT_FLAVOR@ FLAVORS=@FLAVORS@ +TYPES=@TYPES@ # Slash separated list of return values from $(origin VAR) # that are untrusted - set default in this file instead. |