diff options
author | Micael Karlberg <[email protected]> | 2019-05-20 15:23:48 +0200 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2019-06-14 12:32:44 +0200 |
commit | 2c08787a53d30bb60d2b604eedb19389dc5a0d9e (patch) | |
tree | 4f64870edf785ab04de6a2a45269453ceec851c9 /make | |
parent | 897a266c3e68d7d94d1f9699ae91cf57fb3b5cc8 (diff) | |
download | otp-2c08787a53d30bb60d2b604eedb19389dc5a0d9e.tar.gz otp-2c08787a53d30bb60d2b604eedb19389dc5a0d9e.tar.bz2 otp-2c08787a53d30bb60d2b604eedb19389dc5a0d9e.zip |
[esock,kernel] net -> prim_net and add (new) net
Renamed the current preloaded net module to prim_net
and removed the deprecated functions (call, cast, ...).
Introduce a "new" net module (in kernel) as an interface
module to the (preloaded) prim_net. This one also contains
the deprecated functions (call, cast, ...).
OTP-15765
Diffstat (limited to 'make')
-rw-r--r-- | make/otp.mk.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/make/otp.mk.in b/make/otp.mk.in index cdddb90734..cc76f00e7e 100644 --- a/make/otp.mk.in +++ b/make/otp.mk.in @@ -110,6 +110,10 @@ ifdef BOOTSTRAP else ERL_COMPILE_FLAGS += +debug_info endif +ifeq ($(USE_ESOCK),yes) +ERL_COMPILE_FLAGS += -DUSE_ESOCK=true +endif + ERLC_WFLAGS = -W ERLC = erlc $(ERLC_WFLAGS) $(ERLC_FLAGS) ERL = erl -boot start_clean |