diff options
author | Björn-Egil Dahlberg <[email protected]> | 2012-07-19 19:51:18 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2012-07-19 20:22:53 +0200 |
commit | 0348e26ea7b6522f4a324bc5010c36b40adf0ed4 (patch) | |
tree | 118c265de7fd271e8c68fae50dd610236cf6a5d9 /make/otp.mk.in | |
parent | f4881aee5d5c39fd405619b1846776b8f9c65c77 (diff) | |
download | otp-0348e26ea7b6522f4a324bc5010c36b40adf0ed4.tar.gz otp-0348e26ea7b6522f4a324bc5010c36b40adf0ed4.tar.bz2 otp-0348e26ea7b6522f4a324bc5010c36b40adf0ed4.zip |
erts: Remove vxworks from top make
Diffstat (limited to 'make/otp.mk.in')
-rw-r--r-- | make/otp.mk.in | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/make/otp.mk.in b/make/otp.mk.in index 756cc85443..ed2fd8a70b 100644 --- a/make/otp.mk.in +++ b/make/otp.mk.in @@ -77,19 +77,13 @@ OTP_RELEASE = @OTP_RELEASE@ # Erlang language section # ---------------------------------------------------- EMULATOR = beam -ifeq ($(findstring vxworks,$(TARGET)),vxworks) -# VxWorks object files should be compressed. -# Other object files should have debug_info. - ERL_COMPILE_FLAGS += +compressed +ifeq ($(findstring ose_ppc750,$(TARGET)),ose_ppc750) +ERL_COMPILE_FLAGS += +compressed else - ifeq ($(findstring ose_ppc750,$(TARGET)),ose_ppc750) - ERL_COMPILE_FLAGS += +compressed + ifdef BOOTSTRAP + ERL_COMPILE_FLAGS += +slim else - ifdef BOOTSTRAP - ERL_COMPILE_FLAGS += +slim - else - ERL_COMPILE_FLAGS += +debug_info - endif + ERL_COMPILE_FLAGS += +debug_info endif endif ERLC_WFLAGS = -W |