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:
Rosen Penev 2020-12-18 17:13:32 -08:00
parent 77844c85e5
commit bfabad1bd1
No known key found for this signature in database
GPG Key ID: 36D31CFA845F0E3B
1 changed files with 2 additions and 12 deletions

View File

@ -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 += \