diff options
author | Björn Gustavsson <[email protected]> | 2019-03-11 13:15:02 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2019-03-20 16:19:30 +0100 |
commit | 4e0430638635083c199f81375a6c14f2ffb726fb (patch) | |
tree | feaa70c8e46e8a82469ff10a237c336b905d4437 /lib/kernel | |
parent | 0ffc8346553a5fc9322a75d4d8be5417dad67f29 (diff) | |
download | otp-4e0430638635083c199f81375a6c14f2ffb726fb.tar.gz otp-4e0430638635083c199f81375a6c14f2ffb726fb.tar.bz2 otp-4e0430638635083c199f81375a6c14f2ffb726fb.zip |
HiPE: Don't fail the compilation for unimplemented instructions
Diffstat (limited to 'lib/kernel')
-rw-r--r-- | lib/kernel/src/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/kernel/src/Makefile b/lib/kernel/src/Makefile index 43b776f37e..fcb599859b 100644 --- a/lib/kernel/src/Makefile +++ b/lib/kernel/src/Makefile @@ -175,8 +175,10 @@ APPUP_TARGET= $(EBIN)/$(APPUP_FILE) ifeq ($(NATIVE_LIBS_ENABLED),yes) ERL_COMPILE_FLAGS += +native +else +ERL_COMPILE_FLAGS += -Werror endif -ERL_COMPILE_FLAGS += -I../include -Werror +ERL_COMPILE_FLAGS += -I../include # ---------------------------------------------------- # Targets |