git: bfda574d1a63 - 2021Q4 - devel/efl: Fix build on armv6/armv7.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 26 Oct 2021 15:55:05 UTC
The branch 2021Q4 has been updated by arrowd: URL: https://cgit.FreeBSD.org/ports/commit/?id=bfda574d1a63d6fe5d5e7218d28c953675ffc508 commit bfda574d1a63d6fe5d5e7218d28c953675ffc508 Author: Robert Clausecker <fuz@fuz.su> AuthorDate: 2021-10-25 18:52:02 +0000 Commit: Gleb Popov <arrowd@FreeBSD.org> CommitDate: 2021-10-26 15:42:11 +0000 devel/efl: Fix build on armv6/armv7. The clang's integrated assembler is having problems with assembly sources, so bring in binutils as. PR: 259443 (cherry picked from commit 78d1e7e3c761c7c5821d6bda70d157fa3d179460) --- devel/efl/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/devel/efl/Makefile b/devel/efl/Makefile index f3f9b1ddbae5..f9ba342e2556 100644 --- a/devel/efl/Makefile +++ b/devel/efl/Makefile @@ -306,6 +306,11 @@ MESON_ARGS+= ${EVAS-LOADERS-DISABLER} MESON_ARGS+= -Db_asneeded=false .endif +.if ${ARCH:Marmv?} +BUILD_DEPENDS+= as:devel/binutils +CFLAGS+= -no-integrated-as +.endif + .if ${PORT_OPTIONS:MLUA} && ${PORT_OPTIONS:MCXX} EFL_BINDINGS= -Dbindings=lua,cxx .else