diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-08-20 22:38:49 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-08-20 22:38:49 +0000 |
commit | 1f045f1f3c1280e3a78101e4d3b49455a743f793 (patch) | |
tree | f0782db371c618073e3c23a393606172042b0ec8 /lang/erlang | |
parent | 218ea1a03b06eed1e74412c8e42ba03f585e19f6 (diff) |
lang/erlang: fix build on powerpc64 elfv1
Force newer GCC and disable DTRACE. Looks like Dtrace on elfv1 is buggy and causes build to break.
Notes
Notes:
svn path=/head/; revision=545568
Diffstat (limited to 'lang/erlang')
-rw-r--r-- | lang/erlang/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lang/erlang/Makefile b/lang/erlang/Makefile index b26e3f2448f8..86ae67757f1b 100644 --- a/lang/erlang/Makefile +++ b/lang/erlang/Makefile @@ -15,7 +15,7 @@ LICENSE= APACHE20 BROKEN_sparc64= Fails to build: error: fp_except undeclared -USES= autoreconf:build gmake ncurses perl5 +USES= autoreconf:build compiler:c11 gmake ncurses perl5 USE_GITHUB= nodefault GH_ACCOUNT= erlang:otp,corba GH_PROJECT= otp:otp corba:corba @@ -44,8 +44,7 @@ TOOLS_VSN= 3.1.0.1 OPTIONS_DEFINE= CORBA DIRTY DTRACE FOP HIPE JAVA KQUEUE MANPAGES NATIVE ODBC OPENSSL PDF SCTP THREADS WX OPTIONS_DEFAULT=CORBA DIRTY DTRACE HIPE KQUEUE MANPAGES OPENSSL SCTP THREADS -OPTIONS_EXCLUDE_powerpc64= HIPE ${OPTIONS_EXCLUDE_${ARCH}_${OSREL:R}} -OPTIONS_EXCLUDE_powerpc64_13= DTRACE +OPTIONS_EXCLUDE_powerpc64= DTRACE HIPE CORBA_DESC= Enable Corba support DIRTY_DESC= Enable Dirty schedulers |