diff options
author | Björn-Egil Dahlberg <[email protected]> | 2014-09-16 15:22:15 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2014-09-17 15:21:26 +0200 |
commit | 9c9878d6d4e99aba195177baef66067da0a2b797 (patch) | |
tree | 906a39b968ab6401551b8ea6adad837f034848a1 /erts/emulator/Makefile.in | |
parent | fcd39487c552cd18c49e23137e5c3808d38e3a0a (diff) | |
download | otp-9c9878d6d4e99aba195177baef66067da0a2b797.tar.gz otp-9c9878d6d4e99aba195177baef66067da0a2b797.tar.bz2 otp-9c9878d6d4e99aba195177baef66067da0a2b797.zip |
erts: Add icount build type for opcode counter
Enables ERTS_OPCODE_COUNTER_SUPPORT.
Diffstat (limited to 'erts/emulator/Makefile.in')
-rw-r--r-- | erts/emulator/Makefile.in | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/erts/emulator/Makefile.in b/erts/emulator/Makefile.in index 7145824f91..53fc7bd713 100644 --- a/erts/emulator/Makefile.in +++ b/erts/emulator/Makefile.in @@ -112,18 +112,24 @@ NO_INLINE_FUNCTIONS=true else ifeq ($(TYPE),lcnt) -PURIFY = +PURIFY = TYPEMARKER = .lcnt TYPE_FLAGS = @CFLAGS@ -DERTS_ENABLE_LOCK_COUNT else ifeq ($(TYPE),frmptr) -PURIFY = +PURIFY = OMIT_OMIT_FP=yes TYPEMARKER = .frmptr TYPE_FLAGS = @CFLAGS@ -DERTS_FRMPTR else +ifeq ($(TYPE),icount) +PURIFY = +TYPEMARKER = .icount +TYPE_FLAGS = @CFLAGS@ -DERTS_OPCODE_COUNTER_SUPPORT +else + # If type isn't one of the above, it *is* opt type... override TYPE=opt PURIFY = @@ -138,6 +144,7 @@ endif endif endif endif +endif comma:=, space:= |