erlang: disable PGO on host
Fixes compilation with clang. The make system misidentifies clang as GCC for some reason. Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
77844c85e5
commit
bfabad1bd1
1 changed files with 2 additions and 12 deletions
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
|||
|
||||
PKG_NAME:=erlang
|
||||
PKG_VERSION:=23.0
|
||||
PKG_RELEASE:=3
|
||||
PKG_RELEASE:=4
|
||||
|
||||
PKG_SOURCE:=otp_src_$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:= http://www.erlang.org/download/
|
||||
|
@ -314,20 +314,10 @@ endef
|
|||
|
||||
HOST_CONFIGURE_ARGS += \
|
||||
--disable-hipe \
|
||||
--disable-pgo \
|
||||
--disable-smp-support \
|
||||
--without-javac
|
||||
|
||||
HOST_CFLAGS += -D_GNU_SOURCE
|
||||
|
||||
define Host/Compile
|
||||
$(MAKE) -C $(HOST_BUILD_DIR) all
|
||||
endef
|
||||
|
||||
define Host/Install
|
||||
$(MAKE) -C $(HOST_BUILD_DIR) install
|
||||
endef
|
||||
|
||||
|
||||
# Target
|
||||
|
||||
CONFIGURE_ARGS += \
|
||||
|
|
Loading…
Reference in a new issue