diff options
author | Björn Gustavsson <[email protected]> | 2019-03-21 16:14:25 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2019-03-21 16:14:25 +0100 |
commit | 2cc798bbbf9924e1c87c6eaa6e1c8be8cca5596c (patch) | |
tree | 027aeb6c0a4be44a412385be59c777b3cee366ca /lib/kernel | |
parent | b89b9d8e5f8a136150642b9f7e34268a6d99381f (diff) | |
parent | 4e0430638635083c199f81375a6c14f2ffb726fb (diff) | |
download | otp-2cc798bbbf9924e1c87c6eaa6e1c8be8cca5596c.tar.gz otp-2cc798bbbf9924e1c87c6eaa6e1c8be8cca5596c.tar.bz2 otp-2cc798bbbf9924e1c87c6eaa6e1c8be8cca5596c.zip |
Merge branch 'bjorn/hipe-compilation/OTP-15596'
* bjorn/hipe-compilation/OTP-15596:
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 |