diff options
author | Björn Gustavsson <bjorn@erlang.org> | 2022-06-29 13:13:33 +0200 |
---|---|---|
committer | Björn Gustavsson <bjorn@erlang.org> | 2022-06-29 13:20:17 +0200 |
commit | 7f51a71aa483d9fa7781043a855040e45286c1ab (patch) | |
tree | 8cddfcfc1fc912be07b4f292565e0f9af1fc641e /lib/syntax_tools | |
parent | b979230e1e3aa61ac3d4b55a9bb4095b7b340289 (diff) | |
parent | da001d9d75f2cac4ebc577d362a21ebff58080c6 (diff) | |
download | erlang-7f51a71aa483d9fa7781043a855040e45286c1ab.tar.gz |
Merge branch 'deterministic-build' of https://github.com/TD5/otp into maint
* 'deterministic-build' of https://github.com/TD5/otp:
make: Allow OTP to be built deterministically
compiler: Make test_lib robust to +deterministic
compiler: Make compiler forward +determinsitic flag to epp
compiler: Make yecc respect +deterministic
compiler: Make leex respect +deterministic
compiler: Make asn1ct_gen respect +deterministic
compiler: Make EPP respect +deterministic
OTP-18165
Diffstat (limited to 'lib/syntax_tools')
-rw-r--r-- | lib/syntax_tools/test/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/syntax_tools/test/Makefile b/lib/syntax_tools/test/Makefile index 51fe2417b1..deee5ab814 100644 --- a/lib/syntax_tools/test/Makefile +++ b/lib/syntax_tools/test/Makefile @@ -27,6 +27,7 @@ RELSYSDIR = $(RELEASE_PATH)/syntax_tools_test ERL_MAKE_FLAGS += ERL_COMPILE_FLAGS += +ERL_COMPILE_FLAGS := $(filter-out +deterministic,$(ERL_COMPILE_FLAGS)) EBIN = . |